正则表达式java应用正则表达式
Posted 无信不立
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式java应用正则表达式相关的知识,希望对你有一定的参考价值。
一:简单应用
/** * * ‘ * & * ‘ * & * & * ‘ * ‘ * ‘ * sources=sdcg‘hde&xyz‘dfa&&ad‘‘‘ * result=sdcghdexyzdfaad */ public static void main(String[] args) { String regex="‘|&"; Pattern pattern=Pattern.compile(regex); String sources="sdcg‘hde&xyz‘dfa&&ad‘‘‘"; Matcher matcher=pattern.matcher(sources); while(matcher.find()){ System.out.println(matcher.group()); } String result=matcher.replaceAll(""); System.out.println("sources="+sources); System.out.println("result="+result); }
二:特例:“\”在java的正则表达式需要写成“\\\\”
/** * * & * * & * & * sources=sdcg\hde&xyz\dfa&&ad‘‘‘ * result=sdcghdexyzdfaad‘‘‘ * * @param args */ public static void main(String[] args) { String regex="\\\\|&"; Pattern pattern=Pattern.compile(regex); String sources="sdcg\\hde&xyz\\dfa&&ad‘‘‘"; Matcher matcher=pattern.matcher(sources); while(matcher.find()){ System.out.println(matcher.group()); } String result=matcher.replaceAll(""); System.out.println("sources="+sources); System.out.println("result="+result); }
以上是关于正则表达式java应用正则表达式的主要内容,如果未能解决你的问题,请参考以下文章