在Java中,您可以使用split()
方法来拆分字符串。split()
方法接收一个字符串参数,该字符串将用作分隔符来拆分原始字符串,并返回一个字符串数组。
下面是一个示例代码,演示了如何使用split()
方法来拆分一个字符串:
String str = "Hello, World! This is a sample string.";
// 使用空格分隔字符串
String[] words = str.split(" ");
// 遍历并打印拆分后的字符串数组
for (String word : words) {
System.out.println(word);
}
输出结果为:
Hello,
World!
This
is
a
sample
string.
在上面的示例中,我们使用空格作为分隔符来拆分字符串。您可以根据您的需求使用不同的分隔符,例如逗号、句点等。只需将所需的分隔符作为参数传递给split()
方法即可。