In order to Split a String in Java, you need to make use of the split(String regex) function provided in java.lang.String class. Let's see an example.
Input String: "This is some text that I want to split by spaces into an Array of Strings."Code Snippet:
package com.code2care.java.tutorials;
public class JavaStringSplitBySpace {
public static void main(String[] args) {
String dataString = "This is some text that I want to split by spaces into an Array of Strings.";
String[] dataStringArr = dataString.split("\\s");
for (String data : dataStringArr) {
System.out.println(data);
}
}
}
Output:
This
is
some
text
that
I
want
to
split
by
spaces
into
an
Array
of
Strings.
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!