ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/utils/Trim.cpp
Revision: 1840
Committed: Fri Dec 3 00:26:07 2004 UTC (19 years, 9 months ago) by tim
File size: 564 byte(s)
Log Message:
Fixed a bug in countTokens in StringTokenizer

File Contents

# User Rev Content
1 tim 1840
2     #include "utils/Trim.hpp"
3     namespace oopse {
4    
5     void trimLeft(std::string& str) {
6     trimLeftIf(str, std::isspace);
7     }
8    
9     void trimRight(std::string& str) {
10     trimRightIf(str, std::isspace);
11     }
12    
13     void trim(std::string& str) {
14     trimIf(str, std::isspace);
15     }
16    
17     std::string trimLeftCopy(const std::string& input) {
18     return trimLeftCopyIf(input, std::isspace);
19     }
20    
21     std::string trimRightCopy(const std::string& input) {
22     return trimRightCopyIf(input, std::isspace);
23     }
24    
25     std::string trimCopy(const std::string& input) {
26     return trimCopyIf(input, std::isspace);
27     }
28    
29     }

Properties

Name Value
svn:executable *