]> git.mxchange.org Git - simgear.git/blob - simgear/misc/strutils.cxx
Initial revision
[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 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
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include "strutils.hxx"
28
29 const string whitespace = " \n\r\t";
30
31 //
32 string
33 trimleft( const string& s, const string& trimmings )
34 {
35     string result;
36     string::size_type pos = s.find_first_not_of( trimmings );
37     if ( pos != string::npos )
38     {
39         result.assign( s.substr( pos ) );
40     }
41
42     return result;
43 }
44
45 //
46 string
47 trimright( const string& s, const string& trimmings )
48 {
49     string result;
50
51     string::size_type pos = s.find_last_not_of( trimmings );
52     if ( pos == string::npos )
53     {
54         // Not found, return the original string.
55         result = s;
56     }
57     else
58     {
59         result.assign( s.substr( 0, pos+1 ) );
60     }
61
62     return result;
63 }
64
65 //
66 string
67 trim( const string& s, const string& trimmings )
68 {
69     return trimright( trimleft( s, trimmings ), trimmings );
70 }
71