快速业务通道

在Java中使用正则表达式 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23

在Java中使用正则表达式

时间:2010-12-14

jdk1.4中加入了java.util.regex包提供对正则表达式的支持。而且Java.lang.String类中的replaceAll和split函数也是调用的正则表达式来实现的。

正则表达式对字符串的操作主要包括:字符串匹配,指定字符串替换,指定字符串查找和字符串分割。下面就用一个例子来说明这些操作是如何实现的:

<%@ page import="java.util.regex.*"%> <% Pattern p=null; //正则表达式 Matcher m=null; //操作的字符串 boolean b; String s=null; StringBuffer sb=null; int i=0; //字符串匹配,这是不符合的 p = Pattern.compile("a*b"); m = p.matcher("baaaaab"); b = m.matches(); out.println(b+"<br>"); //字符串匹配,这是符合的 p = Pattern.compile("a*b"); m = p.matcher("aaaaab"); b = m.matches(); out.println(b+"<br>"); //字符串替换 p = Pattern.compile("ab"); m = p.matcher("aaaaab"); s = m.replaceAll("d"); out.println(s+"<br>"); p = Pattern.compile("a*b"); m = p.matcher("aaaaab"); s = m.replaceAll("d"); out.println(s+"<br>"); p = Pattern.compile("a*b"); m = p.matcher("caaaaab"); s = m.replaceAll("d"); out.println(s+"<br>"); //字符串查找 p = Pattern.compile("cat"); m = p.matcher("one cat two cats in the yard"); sb = new StringBuffer(); while (m.find()) { m.appendReplacement(sb, "dog"); i++; } m.appendTail(sb); out.println(sb.toString()+"<br>"); out.println(i+"<br>"); i=0; p = Pattern.compile("cat"); m = p.matcher("one cat two ca tsi nthe yard"); sb = new StringBuffer(); while (m.find()) { m.appendReplacement(sb, "dog"); i++; } m.appendTail(sb); out.println(sb.toString()+"<br>"); out.println(i+"<br>"); p = Pattern.compile("cat"); m = p.matcher("one cat two cats in the yard"); p=m.pattern(); m = p.matcher("bacatab"); b = m.matches(); out.println(b+"<br>"); s = m.replaceAll("dog"); out.println(s+"<br>"); i=0; p = Pattern.compile("(fds){2,}"); m = p.matcher("dsa da fdsfds aaafdsafds aaf"); sb = new StringBuffer(); while (m.find()) { m.appendReplacement(sb, "dog"); i++; } m.appendTail(sb); out.println(sb.toString()+"<br>"); out.println(i+"<br>"); p = Pattern.compile("cat"); m = p.matcher("one cat two cats in the yard"); sb = new StringBuffer(); while (m.find()) { m.appendReplacement(sb, "<font color="red">cat</font>"); } m.appendTail(sb); out.println(sb.toString()+"<br>"); String aa=sb.toString(); out.println(aa+"<br>"); //字符串分割 p = Pattern.compile("a+"); String[] a=p.split("caaaaaat"); for(i=0;i<a.length;i++) { out.println(a[i]+"<br>"); } p = Pattern.compile("a+"); a=p.split("c aa aaaa t",0); for(i=0;i<a.length;i++) { out.println(a[i]+"<br>"); } p = Pattern.compile(" +"); a=p.split("c aa aaaa t",0); for(i=0;i<a.length;i++) { out.println(a[i]+"<br>"); } p = Pattern.compile("\\+"); a=p.split("dsafasdfdsafsda+dsagfasdfa+sdafds"); out.println(a.length+"<br>"); for(i=0;i<a.length;i++) { out.println(a[i]+"<br>"); } %>

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号