]> git.mxchange.org Git - simgear.git/blob - simgear/misc/strutils.cxx
Added a touch of error checking to the screen dump routine, i.e. don't
[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 #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