Y.Wang
Results
2
comments of
Y.Wang
Also I had this problem, and I did a little investigation, a solution was found that by modifying one line code in _CSVReader.m_ `regex = [NSRegularExpression regularExpressionWithPattern:[NSString stringWithFormat:@"^\\s*[+-]?(\[1-9]+\\%@?\\d*|\\*\\%@?\\d+|\[0]+\\%@+\\d*)([eE][+-]?\\d+)?\\s*$",_config.decimalMark,_config.decimalMark,_config.decimalMark] options:0 error:NULL];`...
@jakob The logic is if a value has no decimalMark (not a float) and it begins with 0, your program considers it as a string rather than a number. For...