Java String split()
Java, the split() method of the String class is used to split a string into multiple substrings based on a specified delimiter. The split() method takes the delimiter as an argument and returns an array of strings that are separated by that delimiter.
Syantaxregex : regular expression to be applied on string.
Returns: array of strings
ExampleJava String split() is based on regex expression, a special attention is needed with some characters which have a special meaning in a regex expression.
The split() method provides a convenient way to extract individual pieces of information from a string based on a specific pattern or delimiter. It is commonly used in various string manipulation and parsing tasks in Java programming.
Spliting string with limit
SyntaxYou can set a limit the output strings.
ExampleThere are situation that several characters being used as delimiters.
ExampleHow to split a String by space
Java String.split() method is based upon regular expressions. So provide "\\s+" as split parameter.
ExampleConclusion
The split() method in Java String is used to divide a string into an array of substrings based on a specified delimiter. It returns the substrings as elements of the resulting array, allowing easy separation and manipulation of components within the original string.