星期五, 九月 03, 2004

JDK 1.4中利用java.util.Regex来发现匹配的单词.

//发现factorycode单词.
//\\b 表示单词分界符号.

import java.util.regex.*;
String targetStr = "a.factorycode,b.empid afactorycodeb";
String RegexStr="\\bfactorycode\\b";
Pattern p = Pattern.compile(RegexStr);
Matcher m = p.matcher(targetStr);
while ( (m.find()) ) { System.out.println("find");}