我有一个字符串,其中有几个单词用空格分隔,例如“firstword second third”和一个ArrayList。我想将字符串拆分成几个部分,并将'piece'字符串添加到ArrayList中。
例如,“firstword second third”可以拆分为三个单独的字符串,因此ArrayList将有3个元素; “1 2 3 4”可以分成4个字符串,在ArrayList的4个元素中。请参阅以下代码:
public void separateAndAdd(String notseparated) {
for(int i=0;i<canBeSepartedinto(notseparated);i++{
//what should i put here in order to split the string via spaces?
thearray.add(separatedstring);
}
}
public int canBeSeparatedinto(String string)
//what do i put here to find out the amount of spaces inside the string?
return ....
}
如果你不理解我的意思,请发表评论或者我应该在这篇文章中修正一些错误。谢谢你的时间!
答案 0 :(得分:10)
您可以使用split()
:
String[] parts = inputString.split(" ");
然后迭代数组并将各个部分(如果!"".equals(parts[i]
)添加到列表中。
答案 1 :(得分:4)
如果要拆分一个空格,可以使用.split(" ");
。如果要拆分连续的所有空格,请使用.split(" +");
。
考虑以下示例:
class SplitTest {
public static void main(String...args) {
String s = "This is a test"; // note two spaces between 'a' and 'test'
String[] a = s.split(" ");
String[] b = s.split(" +");
System.out.println("a: " + a.length);
for(int i = 0; i < a.length; i++) {
System.out.println("i " + a[i]);
}
System.out.println("b: " + b.length);
for(int i = 0; i < b.length; i++) {
System.out.println("i " + b[i]);
}
}
}
如果您担心非标准空格,可以使用"\\s+"
代替" +"
,因为"\\s"
会捕获任何空白区域,而不仅仅是“空格字符”。< / p>
所以你的单独和添加方法变为:
void separateAndAdd(String raw) {
String[] tokens = raw.split("\\s+");
theArray.ensureCapacity(theArray.size() + tokens.length); // prevent unnecessary resizes
for(String s : tokens) {
theArray.add(s);
}
}
这是一个更完整的示例 - 请注意,我在测试期间发现的separateAndAdd
方法中有一个小修改。
import java.util.*;
class SplitTest {
public static void main(String...args) {
SplitTest st = new SplitTest();
st.separateAndAdd("This is a test");
st.separateAndAdd("of the emergency");
st.separateAndAdd("");
st.separateAndAdd("broadcast system.");
System.out.println(st);
}
ArrayList<String> theArray = new ArrayList<String>();
void separateAndAdd(String raw) {
String[] tokens = raw.split("\\s+");
theArray.ensureCapacity(theArray.size() + tokens.length); // prevent unnecessary resizes
for(String s : tokens) {
if(!s.isEmpty()) theArray.add(s);
}
}
public String toString() {
StringBuilder sb = new StringBuilder();
for(String s : theArray)
sb.append(s).append(" ");
return sb.toString().trim();
}
}
答案 2 :(得分:2)
这样做:
thearray = new ArrayList<String>(Arrays.asList(notseparated.split(" ")));
或thearray
已经实例化
thearray.addAll(Arrays.asList(notseparated.split(" ")));
答案 3 :(得分:2)
我建议使用
apache.commons.lang.StringUtils library。
这是最简单的,涵盖了你可以想要的所有不同的条件,用最少的代码分割字符串。
以下是对split方法的引用: Split Method
您还可以参考同一链接上可用于拆分方法的其他选项。
答案 4 :(得分:1)
你可以使用.split()
试试这个
String[] words= inputString.split("\\s");
答案 5 :(得分:1)
如果你想在不同的部分拆分字符串,就像这里我将告诉你我怎么能在白天拆分这个字符串 14-03-2016 ,月份和年份。
String[] parts = myDate.split("-");
day=parts[0];
month=parts[1];
year=parts[2];
答案 6 :(得分:0)
试试这个: 字符串到2部分:
public String[] get(String s){
int l = s.length();
int t = l / 2;
String first = "";
String sec = "";
for(int i =0; i<l; i++){
if(i < t){
first += s.charAt(i);
}else{
sec += s.charAt(i);
}
}
String[] result = {first, sec};
return result;
}
示例:
String s = "HelloWorld";
String[] res = get(s);
System.out.println(res[0]+" "+res[1])
输出:
Hello World