221k views
3 votes
How do you split a string in Java?

User Chris Vest
by
7.5k points

1 Answer

3 votes
The method split() splits a String into multiple Strings given the delimiter that separates them. The returned object is an array which contains the split Strings. We can also pass a limit to the number of elements in the returned array
User AShah
by
7.1k points