java中⽤正则表达式判断中⽂字符串中是否含有英⽂或者数字
public static boolean includingNUM(String str)throws Exception{
Pattern p = Patternpile("[\u4e00-\u9fa5]*[\\d|\\w]+[\u4e00-\u9fa5]*");
//或者 Pattern p = Patternpile("[\u4e00-\u9fa5]*[0-9|a-z|A-Z]+[\u4e00-\u9fa5]*");
Matcher M = p.matcher(str);
boolean f =M.matches();
return f;
}
备注: java正则中:
\\D表⽰⾮数字
\\d表⽰数字
\\W表⽰⾮单词
\u4e00-\u9fa5是中⽂字符的编码范围
\\w表⽰单词
其中⼀个\是转义字符!!
[\d\D]、[\w\W]、[\s\S]这三个表⽰任何字符。
public static void main(String[] args) {
String reg = "[\\d\\D]*\"[^\"]*\"[\\d\\D]*";
String str = "你好\"五都\"辅选"; // 你好"五都"辅选
boolean f = str.matches(reg);
System.out.println(f);
str = "\"五都\"";// "五都"
js中文正则表达式f = str.matches(reg);
System.out.println(f);
}
结果均为true;
\\s在java中不表⽰中⽂汉字,记住。虽然在正则测试机上可以表⽰中⽂汉字
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论