特殊情况有 * ^ : | .
split表达式,其实就是一个正则表达式。* ^ | 等符号在正则表达式中属于一种有特殊含义的字符,如果使用此种字符作为分隔符,必须使用转义符即加以转义。
String[] splitAddress=address.split("\");
String[] splitAddress=address.split("\|"); //如果以竖线为分隔符,则split的时候需要加上两个斜杠【\】进行转义
String[] splitAddress=address.split("\*");
String[] splitAddress=address.split("\:");
String[] splitAddress=address.split("\.");
String[] splitAddress=address.split("\^");
//其他的就都不需要转义了
String[] splitAddress=address.split("@");
String[] splitAddress=address.split(",");
用多个符号作为分隔符:
String[] splitAddress=address.split("\^|@|#");
//举例:
Scanner s = new Scanner(System.in);
String s2 = s.nextLine();
String[] s3 = s2.split("\^|@|#");//如果使用多个分隔符则需要借助 | 符号
for(String t:s3){
System.out.println(t);
}
/*
* 输入:abc^ac@df#ie
* 输出:abc
ac
df
ie
*/