Browse Subversion Repository
Diff of /Conograph/trunk/src/utility_func/zstring.cc
Parent Directory
| Revision Log
| Patch
| 49 |
string::size_type index0; |
string::size_type index0; |
| 50 |
while( index != string::npos ){ |
while( index != string::npos ){ |
| 51 |
index0 = index + 1; |
index0 = index + 1; |
| 52 |
index = str.find_first_of('_', index0); |
index = str.find_first_of(delim, index0); |
| 53 |
word.push_back( str.substr(index0, index-index0) ); |
word.push_back( str.substr(index0, index-index0) ); |
| 54 |
} |
} |
| 55 |
} |
} |
|
|
Legend:
| Removed from v.3 |
|
| changed lines |
| |
Added in v.31 |
|
|
|