]> git.mxchange.org Git - simgear.git/blob - simgear/misc/strutils.cxx
Updates to build system to better support automake-1.5
[simgear.git] / simgear / 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 library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU Library General Public
18 // License along with this library; if not, write to the
19 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 // Boston, MA  02111-1307, USA.
21 //
22 // $Id$
23
24 #include "strutils.hxx"
25
26 const string whitespace = " \n\r\t";
27
28 //
29 string
30 trimleft( const string& s, const string& trimmings )
31 {
32     string result;
33     string::size_type pos = s.find_first_not_of( trimmings );
34     if ( pos != string::npos )
35     {
36         result.assign( s.substr( pos ) );
37     }
38
39     return result;
40 }
41
42 //
43 string
44 trimright( const string& s, const string& trimmings )
45 {
46     string result;
47
48     string::size_type pos = s.find_last_not_of( trimmings );
49     if ( pos == string::npos )
50     {
51         // Not found, return the original string.
52         result = s;
53     }
54     else
55     {
56         result.assign( s.substr( 0, pos+1 ) );
57     }
58
59     return result;
60 }
61
62 //
63 string
64 trim( const string& s, const string& trimmings )
65 {
66     return trimright( trimleft( s, trimmings ), trimmings );
67 }
68