正则表达式匹配不包含某些字符串:
^((?!@).)*$ //如果包含@字符串会被匹配处理
public static void main(String[] args){ String reg = "^((?!@).)*$"; System.out.println("gdfgfgdffgn".matches(reg)); }
字符串不包含@,返回true
本文共 255 字,大约阅读时间需要 1 分钟。
正则表达式匹配不包含某些字符串:
^((?!@).)*$ //如果包含@字符串会被匹配处理
public static void main(String[] args){ String reg = "^((?!@).)*$"; System.out.println("gdfgfgdffgn".matches(reg)); }
字符串不包含@,返回true
转载于:https://www.cnblogs.com/senlinyang/p/8651884.html