欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA 正则表达式 半角英文

程序员文章站 2022-07-15 14:37:15
...
项目背景:
画面中有一输入框,规定,必须为“半角英文字符”。
若后台check不过,则在画面显示错误信息。
核心代码:
String inputNumber = "asdf234中国";
//半角英文字符
// pattern = Pattern.compile("^\\w*$");
Matcher matcher = pattern.matcher(inputNumber);
// 不满足正则表达式的情况
if (!matcher.matches()) {
 // get to the page, and show error message.
}