1
2
3
4
5
6
7
8
9
|
public static boolean startWithChar(String s) { if (s != null && s.length() > 0 ) { String start = s.trim().substring( 0 , 1 ); Pattern pattern = Pattern.compile( "^[A-Za-z]+$" ); return pattern.matcher(start).matches(); } else { return false ; } } |
以上所述是小编给大家介绍的Java使用正则表达式判断字符串是否以字符开始,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://blog.csdn.net/wangwasdf/article/details/73604093