当前位置: 首页 > 工具软件 > micro-match > 使用案例 >

matches

裴理
2023-12-01

matches() 方法用于检测字符串是否匹配给定的正则表达式。

调用此方法的 str.matches(regex) 形式与以下表达式产生的结果完全相同:

Pattern.matches(regex, str)

语法

public boolean matches(String regex)
 

  1.              //汉字转换成拼音  
  2.             String pinyin = characterParser.getSelling(date[i]);  
  3.             //截取第一个字符,将字符串小写字符转换为大写。
  4.             String sortString = pinyin.substring(01).toUpperCase();  
  5.               
  6.             // 正则表达式,判断首字母是否是英文字母  
  7.             if(sortString.matches("[A-Z]")){  
  8.                 sortModel.setSortLetters(sortString.toUpperCase());  
  9.             }else{  
  10.                 sortModel.setSortLetters("#");  
  11.             }  
 类似资料:

相关阅读

相关文章

相关问答