gpt4 book ai didi

java - 将字符串拆分为单个单词 Java

转载 作者:IT老高 更新时间:2023-10-28 20:45:49 27 4
gpt4 key购买 nike

我想知道如何将一个大字符串拆分为一系列较小的字符串或单词。例如:

I want to walk my dog.

我想要一个字符串:"I",另一个字符串:“want”

我该怎么做?

最佳答案

使用split()方法

例如:

String s = "I want to walk my dog";
String[] arr = s.split(" ");

for ( String ss : arr) {
System.out.println(ss);
}

关于java - 将字符串拆分为单个单词 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11726023/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com