Java String split
The java string split() method splits this string against given regular expression and returns a char array.
Signature
There are two signature for split() method in java string.
Parameter
regex : regular expression to be applied on string.
limit : limit for the number of strings in array. If it is zero, it will returns all the strings matching regex.
Returns
array of strings
Throws
PatternSyntaxException if pattern for regular expression is invalid
Since
1.4
Java String split() method example
The given example returns total number of words in a string excluding space only. It also includes special characters.
java string split method by javatpoint
Java String split() method with regex and length example
returning words: welcome to split world returning words: welcome to split world returning words: welcome to split world
No comments:
Post a Comment