码迷,mamicode.com
首页 > 其他好文 > 详细

输入内容验证

时间:2016-11-07 09:57:46      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:param   否则   字符   内容   格式   match   输入   blog   chinese   

/**
* 验证验证输入字母
* 
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsLetter(String str) {
String regex = "^[A-Za-z]+$";
return match(regex, str);
}

/**
* 验证验证输入汉字
* 
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsChinese(String str) {
String regex = "^[\u4e00-\u9fa5],{0,}$";
return match(regex, str);
}

/**
* 验证验证输入字符串
* 
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsLength(String str) {
String regex = "^.{8,}$";
return match(regex, str);
}

 

输入内容验证

标签:param   否则   字符   内容   格式   match   输入   blog   chinese   

原文地址:http://www.cnblogs.com/20gg-com/p/6037528.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!