Ignore:
Timestamp:
11/27/03 15:14:34 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mdata/MDataChain.cc

    r2521 r2573  
    208208// --------------------------------------------------------------------------
    209209//
    210 // Returns the number of alphanumeric characters (including '.')
     210// Returns the number of alphanumeric characters (including '.' and ';')
    211211// in the given string
    212212//
     
    216216    for (int i=0; i<l; i++)
    217217    {
    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]!=']'&&*/
    219220            ((txt[i]!='-' && txt[i]!='+') || i!=0))
    220221            return i;
Note: See TracChangeset for help on using the changeset viewer.