免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1534 | 回复: 0
打印 上一主题 下一主题

JAVA正则表达式二 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-11-28 20:32 |只看该作者 |倒序浏览
现在来讲一下正则表达式的实例吧:
实例一:
/**识别以255开头的IP值
* */
package com.examples;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PositiveLookaheadExample {
    public static void main(String[] args) {
        /** 1.编译你的正则表达式到Pattern的实例中.
            2.使用Pattern对象创建Matcher对象.
            3.使用Matcher对象去控制或操纵这个字符序列.
         * */
        String regex = "(?=^255).*";//定义正则表达式
        Pattern pattern = Pattern.compile(regex);
        String candidate = "255.0.0.1";//待匹配的字符串
        Matcher matcher = pattern.matcher(candidate);
        String ip = "not found";
        if (matcher.find())//下面就是用match对象来操纵字符序列
          ip = matcher.group();
        String msg = "ip: " + ip;
        System.out.println(msg);
    }
}
实例二:
/**java用正则表达式查找字符串的例子*/
package com.examples;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PositiveLookBehindExample {
  public static void main(String args[]) throws Exception {
    String regex = "(?<=http://)\\S+";//问题是如何来写这个正则表达式呢?
    Pattern pattern = Pattern.compile(regex);
    String candidate = "你能从这个字符串里找到网址吗";
    candidate += "http://www.100jq.com. There, ";
    candidate += "you can find some Java examples.";
    Matcher matcher = pattern.matcher(candidate);
    while (matcher.find()) {
      String msg = ":" + matcher.group() + ":";
      System.out.println(msg);
    }
  }
}
//根据我们写的正则表达式去查找我们的一个字符串中的东西哦!
实例三:
package com.examples;
/**从命令行输入一个字符串与给定的正则表达式匹配*/
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RE_QnotU_Args {
  public static void main(String[] argv) {
    String patt = "^Q[^u]\\d+\\.";
    Pattern r = Pattern.compile(patt);
      Matcher m = r.matcher("RE_QnotU_Args");
      boolean found = m.lookingAt();
      System.out.println(patt + (found ? " matches " : " doesn't match ")
          + "RE_QnotU_Args");
  }
}
实例四:
package com.examples;
/**用正则表达式拆分java字符串数组的例子
*/
import java.util.regex.*;
public class Split {
  public static void main(String[] args) {
    String[] x =
      Pattern.compile("ian").split(
        "the darwinian devonian explodian chicken");
    for (int i=0; i<x.length; i++) {
      System.out.println(i + " \"" + x + "\"");
    }
  }
}
实例五:
package com.examples;
//将正则表达式的查找方法封装成一个类的代码
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
public final class RegexTestHarness2 {
  private static String REGEX;
  private static String INPUT;
  private static BufferedReader br;
  private static Pattern pattern;
  private static Matcher matcher;
  private static boolean found;
  public static void main(String[] argv) {
    initResources();
    processTest();
    closeResources();
  }
  private static void initResources() {
    try {
      br = new BufferedReader(new FileReader("regex.txt"));
    } catch (FileNotFoundException fnfe) {
      System.out
          .println("Cannot locate input file! " + fnfe.getMessage());
      System.exit(0);
    }
    try {
      REGEX = br.readLine();
      INPUT = br.readLine();
    } catch (IOException ioe) {
    }
    try {
      pattern = Pattern.compile(REGEX);
      matcher = pattern.matcher(INPUT);
    } catch (PatternSyntaxException pse) {
      System.out
          .println("There is a problem with the regular expression!");
      System.out.println("The pattern in question is: "
          + pse.getPattern());
      System.out.println("The description is: " + pse.getDescription());
      System.out.println("The message is: " + pse.getMessage());
      System.out.println("The index is: " + pse.getIndex());
      System.exit(0);
    }
    System.out.println("Current REGEX is: " + REGEX);
    System.out.println("Current INPUT is: " + INPUT);
  }
  private static void processTest() {
    while (matcher.find()) {
      System.out.println("I found the text \"" + matcher.group()
          + "\" starting at index " + matcher.start()
          + " and ending at index " + matcher.end() + ".");
      found = true;
    }
    if (!found) {
      System.out.println("No match found.");
    }
  }
  private static void closeResources() {
    try {
      br.close();
    } catch (IOException ioe) {
    }
  }
}
实例六:
//正则表达式查询
package com.examples;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public final class MatcherTest {
  private static final String REGEX = "\\bdog\\b";
  private static final String INPUT = "dog dog dog doggie dogg";
  public static void main(String[] argv) {
    Pattern p = Pattern.compile(REGEX);
    Matcher m = p.matcher(INPUT); // get a matcher object
    int count = 0;
    while (m.find()) {
      count++;
      System.out.println("Match number " + count);
      System.out.println("start(): " + m.start());
      System.out.println("end(): " + m.end());
    }
  }
}
实例7:
package com.examples;
//正则表达式匹配邮政编码
public class MatchZipCodes {
  public static void main(String args[]) {
    isZipValid("45643-4443");
    isZipValid("45643");
    isZipValid("443");
    isZipValid("45643-44435");
    isZipValid("45643 44435");
  }
  public static boolean isZipValid(String zip) {
    boolean retval = false;
    String zipCodePattern = "\\d{5}(-\\d{4})?";
    retval = zip.matches(zipCodePattern);
    String msg = "NO MATCH: pattern:" + zip + "\r\n             regex: "
        + zipCodePattern;
    if (retval) {
      msg = "MATCH   : pattern:" + zip + "\r\n             regex: "
          + zipCodePattern;
    }
    System.out.println(msg + "\r\n");
    return retval;
  }
}
实例八:
package com.examples;
//正则表达式匹配电话号码
public class MatchPhoneNumber {
  public static void main(String args[]) {
    isPhoneValid("1-999-585-4009");
    isPhoneValid("999-585-4009");
    isPhoneValid("1-585-4009");
    isPhoneValid("585-4009");
    isPhoneValid("1.999-585-4009");
    isPhoneValid("999 585-4009");
    isPhoneValid("1 585 4009");
    isPhoneValid("111-Java2s");
  }
  public static boolean isPhoneValid(String phone) {
    boolean retval = false;
    String phoneNumberPattern = "(\\d-)?(\\d{3}-)?\\d{3}-\\d{4}";
    retval = phone.matches(phoneNumberPattern);
    String msg = "NO MATCH: pattern:" + phone
        + "\r\n regex: " + phoneNumberPattern;
    if (retval) {
      msg = " MATCH: pattern:" + phone + "\r\n             regex: "
          + phoneNumberPattern;
    }
    System.out.println(msg + "\r\n");
    return retval;
  }
}
实例九:
package com.examples;
//正则表达式匹配电子邮件地址的java代码
public class SubStringDemo {
     public static void main(String[] args) {
        String s = "suraj.gupta@yahoo.com"; // email id in a String
        int IndexOf = s.indexOf("@"); // returns an integer which tells the position of this substring "@" in the parent String "suraj.gupta@yahoo.com"
        String domainName = s.substring(IndexOf); //prints the String after that index
        System.out.println("Taking Domain name from an email id "+domainName);
     }
  }
实例十:
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/84280/showart_1671332.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP