如何按空格拆分字符串我需要用空格来分割我的字符串。为此我试过:str = "Hello I'm your String";String[] splited = str.split(" ");但它似乎不起作用。
3 回答
MM们
TA贡献1886条经验 获得超2个赞
String str = " Hello I'm your String";String[] splitStr = str.split("\\s+");
splitStr[0] == "";splitStr[1] == "Hello";splitStr[2] == "I'm";splitStr[3] == "Your";splitStr[4] == "String";
String str = " Hello I'm your String";String[] splitStr = str.trim().split("\\s+");
开满天机
TA贡献1786条经验 获得超13个赞
str = "Hello I'm your String";String[] splitStr = str.split("\\s+");
添加回答
举报
0/150
提交
取消