A character that separates parts of a string.
A character that separates parts of a string. It's usually one (or more) characters used to separate tokens or may be the regex expression used by the String#split()
.
Strings in Java can be parsed using the split
method of the String class. ( StringTokenizer
can also be used to parse a string). For more detailed information see the Java API documentation for split
.