String的方法中常用的正则表达式
- split() 方法中的正则表达式
- replaceAll() 方法中的正则表达式
split() 方法中的正则表达式
- String类的对象方法split(regex)用regex把字符串分隔成若干个子串。
- 下面的例子求一行中被一个英文逗号和若干个空白符分隔的数的和
正则表达式的模式串预编译后匹配方式
importjava.util.regex.*; publicclassTestRegexSplit { publicstaticvoidmain(String[] args){ Stringstr="28.35 , \t 71.53, \t\t 0.12 \t, "; StringregexString="\\s*,\\s*"; String[] subs=str.split(regexString); doublesum=0.0; for (inti=0; i<subs.length; i++) { doubled=Double.parseDouble(subs[i].trim()); sum+=d; } System.out.println(sum); } } // 程序的运行结果是100.0
replaceAll() 方法中的正则表达式
英文一般用空格分隔两个单词,但由于输入错误,会出现多个空格分隔两个单词的情况。下面的程序把字符串中的多个空格替换为单个空格
importjava.util.regex.*; publicclassTestSearch { publicstaticvoidmain(String[] args){ Stringstr="To be or not to be, that is the question."; Stringres=str.replaceAll(" {2,}", " "); System.out.println(res); } }
程序的运行结果是:To be or not to be, that is the question.
其中的replaceAll(regex, replacement)把符合regex的匹配内容全部更换成replacement