首页 > 学院 > 开发设计 > 正文

演示Matcher & Pattern的用法

2019-11-18 14:48:54
字体:
来源:转载
供稿:网友
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class GetParen0 {
  public static void main(String[] args) {
    Pattern myRE = Pattern.compile("d.*ian");
    Matcher matcher = myRE
        .matcher("darwinian pterodactyls soared over the devonian space");
    matcher.lookingAt();
    String result = matcher.group(0);
    System.out.PRintln(result);
  }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表