]> git.mxchange.org Git - simgear.git/blob - Misc/strutils.cxx
Added point3d.hxx to replace cheezy fgPoint3d struct.
[simgear.git] / 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 //
31 string
32 trimleft( const string& s, const string& trimmings )
33 {
34     string result;
35     string::size_type pos = s.find_first_not_of( trimmings );
36     if ( pos != string::npos )
37     {
38         result.assign( s.substr( pos ) );
39     }
40
41     return result;
42 }
43
44 //
45 string
46 trimright( const string& s, const string& trimmings )
47 {
48     string result;
49
50     string::size_type pos = s.find_last_not_of( trimmings );
51     if ( pos == string::npos )
52     {
53         // Not found, return the original string.
54         result = s;
55     }
56     else
57     {
58         result.assign( s.substr( 0, pos+1 ) );
59     }
60
61     return result;
62 }
63
64 //
65 string
66 trim( const string& s, const string& trimmings )
67 {
68     return trimright( trimleft( s, trimmings ), trimmings );
69 }
70
71 // $Log$
72 // Revision 1.1  1998/09/01 19:06:30  curt
73 // Initial revision.
74 //