gpt4 book ai didi

java - 将字符串的单词转换为字符串数组

转载 作者:搜寻专家 更新时间:2023-11-01 01:02:06 27 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How Do I Split A String By Line Break? [duplicate]

(6 个回答)


5年前关闭。




想象一下我有以下字符串:

hoi
hoe
gaat
het

我从一个文件中得到这个字符串。

我怎样才能把它变成这样的刺痛阵列:
String[] hallo = {
"hoi","hoe","gaat","het"
};

实现这一目标的最简单方法是什么?

最佳答案

您可以使用 split() .

String s[] = input.split("\n"); // "\n" if it is only a new-line. "\r\n" if you use windows OS.

关于java - 将字符串的单词转换为字符串数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35339843/

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