]> git.mxchange.org Git - flightgear.git/blob - Lib/Misc/strutils.cxx
Merge FG_Lib as subdirectory
[flightgear.git] / Lib / Misc / strutils.cxx
1 // String utilities.
2 //
3 // Written by Bernie Bright, 1998
4 //
5 // Copyright (C) 1998  Bernie Bright - bbright@c031.aone.net.au
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "strutils.hxx"
29
30 const string whitespace = " \n\r\t";
31
32 //
33 string
34 trimleft( const string& s, const string& trimmings )
35 {
36     string result;
37     string::size_type pos = s.find_first_not_of( trimmings );
38     if ( pos != string::npos )
39     {
40         result.assign( s.substr( pos ) );
41     }
42
43     return result;
44 }
45
46 //
47 string
48 trimright( const string& s, const string& trimmings )
49 {
50     string result;
51
52     string::size_type pos = s.find_last_not_of( trimmings );
53     if ( pos == string::npos )
54     {
55         // Not found, return the original string.
56         result = s;
57     }
58     else
59     {
60         result.assign( s.substr( 0, pos+1 ) );
61     }
62
63     return result;
64 }
65
66 //
67 string
68 trim( const string& s, const string& trimmings )
69 {
70     return trimright( trimleft( s, trimmings ), trimmings );
71 }
72
73 // $Log$
74 // Revision 1.2  1998/10/18 01:17:15  curt
75 // Point3D tweaks.
76 //
77 // Revision 1.1  1998/09/01 19:06:30  curt
78 // Initial revision.
79 //