public class StringTest {
/**
* 实现将String中的数据以某种方式分离开来
* 我们用单个的字符串分离成单个的单词为例子
*/
public static void main(String[] args) {
String conent ="I Love java very much!";
//方法一: 直接调用spit方法
String []test1=conent.split(" ");
for (String string : test1) {
System.out.println(string);
}
System.out.println();
//方法二: 自己动手写分离方法
List<String> data=new ArrayList<String>();
data.add(conent.substring(0, conent.indexOf(" ")));
for(int i=0;i<conent.length();i++){
if(" ".equals(""+conent.charAt(i))){
int index =conent.indexOf(" ",i+1);
if(index==-1)
index=conent.length();
String test =conent.substring(i+1, index);
test=test.replace("!", "");
data.add(test);
}
}
for (String object : data) {
System.out.println(object);
}
}
}
从String中提取对我们有用的数据
public class StringTest {
/**
* 实现将String中的数据以某种方式分离开来
* 我们用单个的字符串分离成单个的单词为例子
*/
public static void main(String[] args) {
String conent ="I Love java very much!";
//方法一: 直接调用spit方法
String []test1=conent.split(" ");
for (String string : test1) {
System.out.println(string);
}
System.out.println();
//方法二: 自己动手写分离方法
List<String> data=new ArrayList<String>();
data.add(conent.substring(0, conent.indexOf(" ")));
for(int i=0;i<conent.length();i++){
if(" ".equals(""+conent.charAt(i))){
int index =conent.indexOf(" ",i+1);
if(index==-1)
index=conent.length();
String test =conent.substring(i+1, index);
test=test.replace("!", "");
data.add(test);
}
}
for (String object : data) {
System.out.println(object);
}
}
}
有时侯,在String 对象中,我们只需要一部分的数据,我们就需要将其中的数据进行有效的提取,这里我就用将String中的字符串分解成单个的单词为例子: