前端之家收集整理的这篇文章主要介绍了
处理String的split方法把参数作为正则匹配,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
String str="M|7|8";
System.out.print("输出结果:|"); // 输出结果:|
System.out.print(str.contains("|")); //true
System.out.print(str.split("|").length); // 6 {"","M","|","7","8"}
System.out.print("输出结果:\\|"); //输出结果:\|
System.out.print(str.contains("\\|")); //false
System.out.print(str.split("\\|").length); //3 {"M","8"}
SO
想得到以|分割,正确的数组要:
if(str.contains("|")){
String[] arrStr=str.split("\\|");
}
原文链接:https://www.f2er.com/regex/362346.html