import java.util.regex.*;
public final class RegExpValidator
{
/**
* 验证邮箱
* @param 待验证的字符串
* @return 如果是符合的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean isEmail(String str)
{
String regex = "^([\\w-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([\\w-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$";
return match(regex, str);
}
/**
* 验证IP地址
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean isIP(String str)
{
String num = "(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)";
String regex = "^" + num + "\\." + num + "\\." + num + "\\." + num + "$";
return match(regex, str);
}
/**
* 验证网址Url
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsUrl(String str)
{
String regex = "http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?";
return match(regex, str);
}
/**
* 验证电话号码
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsTelephone(String str)
{
String regex = "^(\\d{3,4}-)?\\d{6,8}$";
return match(regex, str);
}
/**
* 验证输入密码条件(字符与数据同时出现)
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsPassword(String str)
{
String regex = "[A-Za-z]+[0-9]";
return match(regex, str);
}
/**
* 验证输入密码长度 (6-18位)
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsPasswLength(String str)
{
String regex = "^\\d{6,18}$";
return match(regex, str);
}
/**
* 验证输入邮政编号
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsPostalcode(String str)
{
String regex = "^\\d{6}$";
return match(regex, str);
}
/**
* 验证输入手机号码
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsHandset(String str)
{
String regex = "^[1]+[3,5]+\\d{9}$";
return match(regex, str);
}
/**
* 验证输入身份证号
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsIDcard(String str)
{
String regex = "(^\\d{18}$)|(^\\d{15}$)";
return match(regex, str);
}
/**
* 验证输入两位小数
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsDecimal(String str)
{
String regex = "^[0-9]+(.[0-9]{2})?$";
return match(regex, str);
}
/**
* 验证输入一年的12个月
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsMonth(String str)
{
String regex = "^(0?[[1-9]|1[0-2])$";
return match(regex, str);
}
/**
* 验证输入一个月的31天
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsDay(String str)
{
String regex = "^((0?[1-9])|((1|2)[0-9])|30|31)$";
return match(regex, str);
}
/**
* 验证日期时间
* @param 待验证的字符串
* @return 如果是符合网址格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean isDate(String str)
{
//严格验证时间格式的(匹配[2002-01-31], [1997-04-30], [2004-01-01])不匹配([2002-01-32], [2003-02-29], [04-01-01])
// String regex = "^((((19|20)(([02468][048])|([13579][26]))-02-29))|((20[0-9][0-9])|(19[0-9][0-9]))-((((0[1-9])|(1[0-2]))-((0[1-9])|(1\\d)|(2[0-8])))|((((0[13578])|(1[02]))-31)|(((01,3-9])|(1[0-2]))-(29|30)))))$";
//没加时间验证的YYYY-MM-DD
// String regex = "^((((1[6-9]|[2-9]\\d)\\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\\d|3[01]))|(((1[6-9]|[2-9]\\d)\\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\\d|30))|(((1[6-9]|[2-9]\\d)\\d{2})-0?2-(0?[1-9]|1\\d|2[0-8]))|(((1[6-9]|[2-9]\\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-))$";
//加了时间验证的YYYY-MM-DD 00:00:00
String regex = "^((((1[6-9]|[2-9]\\d)\\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\\d|3[01]))|(((1[6-9]|[2-9]\\d)\\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\\d|30))|(((1[6-9]|[2-9]\\d)\\d{2})-0?2-(0?[1-9]|1\\d|2[0-8]))|(((1[6-9]|[2-9]\\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-)) (20|21|22|23|[0-1]?\\d):[0-5]?\\d:[0-5]?\\d$";
return match(regex, str);
}
/**
* 验证数字输入
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsNumber(String str)
{
String regex = "^[0-9]*$";
return match(regex, str);
}
/**
* 验证非零的正整数
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsIntNumber(String str)
{
String regex = "^\\+?[1-9][0-9]*$";
return match(regex, str);
}
/**
* 验证大写字母
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsUpChar(String str)
{
String regex = "^[A-Z]+$";
return match(regex, str);
}
/**
* 验证小写字母
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsLowChar(String str)
{
String regex = "^[a-z]+$";
return match(regex, str);
}
/**
* 验证验证输入字母
* @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 regex 正则表达式字符串
* @param str 要匹配的字符串
* @return 如果str 符合 regex的正则表达式格式,返回true, 否则返回 false;
*/
private static boolean match(String regex, String str)
{
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(str);
return matcher.matches();
}
分享到:
相关推荐
RegExpValidator 验证器用于限制用户输入字符串,使用正则表达式来匹配输入字符串。示例代码: TextInput { RegExpValidator { pattern: /^[a-zA-Z]{1}[0-1]{0,2}[a-z]{1,3}$/; } width: 100; height: 20; text: "...
- `RegExpValidator`: 根据正则表达式验证输入字符串。 2. **交互元素** - `MouseArea`: 处理鼠标事件,如点击、拖动等。 - `FocusScope` 和 `Flickable`: 控制键盘焦点和可滚动区域。 - `Flipable`: 可以翻转...
7. 验证正则表达式:<mx:RegExpValidator> 8. 验证加密数字: 9. 验证字符串: 10. 验证邮政编码: 五、校验器的使用技巧 在Flex中使用校验器进行数据验证,需要注意以下几点: 1. 默认情况下,校验器会在用户输入...
- **RegexpValidator**: 使用正则表达式验证输入。 - **SocialSecurityValidator**: 验证社会保障号码的有效性。 - **StringValidator**: 验证字符串的有效性。 - **Formatters**: 用于格式化数据显示。 - **...
12. RegExpValidator:验证字符串正则表达式。 13. TextEdit:显示多行可编辑文本。 QML中的基本交互项有: 1. MouseArea:鼠标句柄交互。 2. FocusScope:键盘焦点句柄。 3. Flickable:提供一种浏览整张图片的一...
- **IntValidator/DoubleValidator/RegExpValidator**:这些验证器分别用于验证整数、浮点数和正则表达式的输入。 - **TextEdit**:显示多行可编辑文本。 ##### 3. 基本交互项 - **MouseArea**:定义了鼠标交互区域...
- **RegexpValidator** - 正则表达式验证器。 - **SSNValidator** - 社会安全号验证器。 - **StringValidator** - 字符串验证器。 - **ZipCodeValidator** - 邮政编码验证器。 ##### 2. **Formatters** - **...
- 通过mx.validators RegExpValidator对输入数据进行验证,确保数据的合法性。 - 定义RendererUtil类,其中包含了一系列静态函数用于生成特定的渲染器,如getComboxRenderer和getRadioRenderer函数负责处理特定数据...