前端之家收集整理的这篇文章主要介绍了
正则表达式匹配所有以小写字符开头的单词,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//正则表达式
"(\\b[a-z][A-Za-z]*\\b)"
测试用例
Matcher mac = Pattern.compile("(\\b[a-z][a-zA-Z]*\\b)").matcher("the Aalone await abc wait success sdf");
while (mac.find()) {
System.out.println(mac.group());
}
看到将所有小写开头的单词都输出来了
the
await
abc
wait
success
sdf
原文链接:https://www.f2er.com/regex/359160.html