xxxxxxxxxx
import java.util.Arrays;
class test{
public static void main(String[] args) {
String sentence = "this is a sentence!";
String[] words = sentence.split(" ");
for (String word : words) {
System.out.println(word);
}
}
}
xxxxxxxxxx
String string = "004-034556";
String[] parts = string.split("-");
String part1 = parts[0]; // 004
String part2 = parts[1]; // 034556
xxxxxxxxxx
String yourString = "Hello/Test/World";
String[] strings = yourString.split("/" /*<- Regex */);
Output:
strings = [Hello, Test, World]