提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
其中包括大小写字母,数字和下划线。例如:
import java.util.regex.Matcher; import java.util.regex.Pattern;//来 自 N o w J a v a . c o m - 时 代 Java public class Main { public static void main(String[] args) { Pattern pattern = Pattern.compile("\\w\\w\\w\\W\\w\\w\\w"); Matcher matcher = pattern.matcher("abc def"); if (matcher.matches()) System.out.println("Match."); else System.out.println("Does not match."); } }