Changeset 2573 for trunk/MagicSoft/Mars/mdata
- Timestamp:
- 11/27/03 15:14:34 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mdata/MDataChain.cc
r2521 r2573 208 208 // -------------------------------------------------------------------------- 209 209 // 210 // Returns the number of alphanumeric characters (including '.' )210 // Returns the number of alphanumeric characters (including '.' and ';') 211 211 // in the given string 212 212 // … … 216 216 for (int i=0; i<l; i++) 217 217 { 218 if (!isalnum(txt[i]) && txt[i]!='.' && /*txt[i]!='['&&txt[i]!=']'&&*/ 218 if (!isalnum(txt[i]) && txt[i]!='.' && txt[i]!=';' && 219 /*txt[i]!='['&&txt[i]!=']'&&*/ 219 220 ((txt[i]!='-' && txt[i]!='+') || i!=0)) 220 221 return i;
Note:
See TracChangeset
for help on using the changeset viewer.