Changeset 387 in dev for trunk/abdev/BasicCompiler_Common/StrOperation.cpp
- Timestamp:
- Feb 11, 2008, 12:06:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/StrOperation.cpp
r313 r387 57 57 return 1; 58 58 } 59 bool RemoveStringQuotes( std::string &str ) 60 { 61 if( str[0] != '\"' ) 62 { 63 return false; 64 } 65 66 str = str.substr( 1, str.length() - 2 ); 67 return true; 68 } 59 69 void RemoveStringPare(char *str){ 60 70 int i;
Note:
See TracChangeset
for help on using the changeset viewer.