java中使用正则表达式

1.用正则表达式分割字符串

Pattern SPLIT2 = Pattern.compile("[,]");
String[] tmpStrings1 = SPLIT2.split(string);

2.检查字符是否存在

    /**
* 检查查询名称是否带.s+数字格式
*
* @return true 表示带格式
*
*/
public static boolean checkSelectPlayerName(String name) {
Pattern p = Pattern.compile(".*(\\.s\\d)$");
Matcher m = p.matcher(name);
boolean b = m.matches();
return b;
}
上一篇:Python3利用BeautifulSoup4抓取站点小说全文的代码


下一篇:Web 页面怎么加货币符号和大写转换