String类的方法中常用的正则表达式
【摘要】
String的方法中常用的正则表达式
split() 方法中的正则表达式 replaceAll() 方法中的正则表达式
split() 方法中的正则表达式
String类的对象方法spl...
String的方法中常用的正则表达式
split() 方法中的正则表达式
replaceAll() 方法中的正则表达式
split() 方法中的正则表达式
String类的对象方法split(regex)用regex把字符串分隔成若干个子串。
下面的例子求一行中被一个英文逗号和若干个空白符分隔的数的和:
正则表达式的模式串预编译后匹配方式
import java.util.regex.*;
public class TestRegexSplit {
public static void main(String[] args){
String str = "28.35 , \t 71.53, \t\t 0.12 \t, ";
String regexString = "\\s*,\\s*";
String[] subs = str.split(regexString);
double sum = 0.0;
for (int i=0; i<subs.length; i++) {
double d = Double.parseDouble(subs[i].trim());
sum += d;
}
System.out.println(sum);
}
} // 程序的运行结果是100.0
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
replaceAll() 方法中的正则表达式
英文一般用空格分隔两个单词,但由于输入错误,
会出现多个空格分隔两个单词的情况。下面的程
序把字符串中的多个空格替换为单个空格
import java.util.regex.*;
public class TestSearch {
public static void main(String[] args){
String str = "To be or not to be, that is the question.";
String res = str.replaceAll(" {2,}", " ");
System.out.println(res);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
程序的运行结果是:To be or not to be, that is the question.
其中的replaceAll(regex, replacement)把符合regex的匹配内容全部更换成replacement
文章来源: blog.csdn.net,作者:静Yu,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_46285118/article/details/113506417
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)