I’d like to know how I can use multiple delimiters with StringTokenizer in java.
For example one of these !,*,/,^ will occur as a delimiter. Also there will only be one at a time.
I’d like to know how I can use multiple delimiters with StringTokenizer in java.
Share
Use the constructor with two arguments, where the second is the delimiters.