Java 正则表达式最简单的例子 (Pattern 的使用),正则表达式pattern,import java.
分享于 点击 45324 次 点评:273
Java 正则表达式最简单的例子 (Pattern 的使用),正则表达式pattern,import java.
import java.util.regex.*;public class Regex1{ public static void main(String args[]) { String str="For my money, the important thing "+ "about the meeting was bridge-building"; String regEx="a|f"; //表示a或f Pattern p=Pattern.compile(regEx); Matcher m=p.matcher(str); boolean result=m.find(); System.out.println(result); }}//该片段来自于http://byrx.net
用户点评