📜  java 将字符串分解为单词 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:07.204000             🧑  作者: Mango

代码示例2
{
public static void main(String args[])
{
String str = "Hey this is Ram";
String [] words = str. split(" ", 3);
for (String word : words)
System. out. println(word);