Answer by Deactivator2 for Splitting a string in java on more than one symbol
For that, you need to use an appropriate regex statement. Most of the symbols you listed are reserved in regex, so you'll have to escape them with \. A very baseline expression would be \+|\-|\\|\*|\=....
View ArticleAnswer by assylias for Splitting a string in java on more than one symbol
You can use a regular expression: String[] tokens = input.split("[+*/=-]"); Note: - should be placed in first or last position to make sure it is not considered as a range separator.
View ArticleAnswer by Mena for Splitting a string in java on more than one symbol
String.split takes a regular expression as argument. This means you can alternate whatever symbol or text abstraction in one parameter in order to split your String. See documentation here. Here's an...
View ArticleAnswer by Dennis Kriechel for Splitting a string in java on more than one symbol
You need Regular Expression. Addionaly you need the regex OR operator: String[]tokens = Stringname.split("\\+|\\-|\\*|\\/|\\=");
View ArticleSplitting a string in java on more than one symbol
I want to split a string when following of the symbols encounter "+,-,*,/,=" I am using split function but this function can take only one argument.Moreover it is not working on "+". I am using...
View Article