java中常用正则表达式

  • 用正则表达式切割字符串;将,,和空格还有\隔开的字符分割
String [] tags=text.split("[\\,, \\\\]");
  • 包含, ,和空字符串
boolean flag = text.matches(".*[\\,, ]+.*");
  • 包含() () 和空格
boolean matches = text.matches(".*[\\(\\) (\\) ]+.*");
  • 包含,,() () 和空格
boolean matchesa = text.matches(".*[\\,,(\\) (\\) ]+.*");
  • 判断字符串是否是整数,不能包含小数点
boolean f = text.matches("^[0-9]*$");
  • 过滤特殊字符
String regEx=".*[\\~!@#$%^&*()+=|{}':;',.<>/?~!#¥%……&*()——+|{}【】\\[\\].‘;:”“’。,、?]+.*";
  • 一个字母 或者一个数字或者 下划线 或者 空格
String r2="[A-Z a-z 0-9_]";
  • 匹配所有除了 大小写字母、数字和空格、下划线之外的所有字符
String r3="[^A-Z a-z 0-9_]"; 
  • 仅数字开头与结尾,数字与数字之间只能是-号
boolean flag=string.matches("^(\\d[-])+\\d$");

暂时常用的这些,待续!

你可能感兴趣的:(java中常用正则表达式)