java - How to split a String at all special characters except dot? -
string line="word,1.2;3.1!4.5";
what regex should use in split(...)
remove special characters except dot? (i need dot keep double , float values)
string line="word,1.2;3.1!4.5";
what regex should use in split(...)
remove special characters except dot? (i need dot keep double , float values)
Comments
Post a Comment