生成随机密码和邮箱、手机匹配

前端之家收集整理的这篇文章主要介绍了生成随机密码和邮箱、手机匹配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
packagecom.alibaba.uyuni.common.util;

importjava.util.Random;

publicclassGeneratePassword{

/**
*生成随机密码
*@parampwd_len
*生成的密码的总长度
*@return密码的字符串
*/
publicstaticStringgenRandomNum(intpwd_len){
//26*2个字母+10个数字
finalintmaxNum=62;
inti;//生成随机数
intcount=0;//生成的密码的长度
char[]str={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','0','1','2','3','4','5','6','7','8','9'};

StringBufferpwd=newStringBuffer("");
Randomr=newRandom();
while(count<pwd_len){
//生成随机数,取绝对值,防止生成负数,
i=Math.abs(r.nextInt(maxNum));//生成的数最大为62-1
if(i>=0&&i<str.length){
pwd.append(str[i]);
count++;
}
}
returnpwd.toString();
}
publicstaticvoidmain(String[]args){
System.out.println(genRandomNum(6));//
}

}




packagecom.alibaba.uyuni.common.util;

importjava.util.regex.Matcher;
importjava.util.regex.Pattern;


publicclassRegexUtils{

/**
*验证Email
*@paramemailemail地址,格式:zhangsan@zuidaima.com,zhangsan@xxx.com.cn,xxx代表邮件服务商
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckEmail(Stringemail){
Stringregex="\\w+@\\w+\\.[a-z]+(\\.[a-z]+)?";
returnPattern.matches(regex,email);
}

/**
*验证***号码
*@paramidCard居民***号码15位或18位,最后一位可能是数字或字母
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckIdCard(StringidCard){
Stringregex="[1-9]\\d{13,16}[a-zA-Z0-9]{1}";
returnPattern.matches(regex,idCard);
}

/**
*验证手机号码(支持国际格式,+86135xxxx...(中国内地),+00852137xxxx...(中国香港))
*@parammobile移动、联通、电信运营商的号码段
*<p>移动的号段:134(0-8)、135、136、137、138、139、147(预计用于TD上网卡)
*、150、151、152、157(TD专用)、158、159、187(未启用)、188(TD专用)</p>
*<p>联通的号段:130、131、132、155、156(世界风专用)、185(未启用)、186(3g)</p>
*<p>电信的号段:133、153、180(未启用)、189</p>
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckMobile(Stringmobile){
Stringregex="(\\+\\d+)?1[3458]\\d{9}$";
returnPattern.matches(regex,mobile);
}

/**
*验证固定电话号码
*@paramphone电话号码,格式:国家(地区)电话代码+区号(城市代码)+电话号码,如:+8602085588447
*<p><b>国家(地区)代码:</b>标识电话号码的国家(地区)的标准国家(地区)代码。它包含从0到9的一位或多位数字,
*数字之后是空格分隔的国家(地区)代码。</p>
*<p><b>区号(城市代码):</b>这可能包含一个或多个从0到9的数字,地区或城市代码放在圆括号――
*对不使用地区或城市代码的国家(地区),则省略该组件。</p>
*<p><b>电话号码:</b>这包含从0到9的一个或多个数字</p>
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckPhone(Stringphone){
Stringregex="(\\+\\d+)?(\\d{3,4}\\-?)?\\d{7,8}$";
returnPattern.matches(regex,phone);
}

/**
*验证整数(正整数和负整数)
*@paramdigit一位或多位0-9之间的整数
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckDigit(Stringdigit){
Stringregex="\\-?[1-9]\\d+";
returnPattern.matches(regex,digit);
}

/**
*验证整数和浮点数(正负整数和正负浮点数)
*@paramdecimals一位或多位0-9之间的浮点数,如:1.23,233.30
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckDecimals(Stringdecimals){
Stringregex="\\-?[1-9]\\d+(\\.\\d+)?";
returnPattern.matches(regex,decimals);
}

/**
*验证空白字符
*@paramblankSpace空白字符,包括:空格、\t、\n、\r、\f、\x0B
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckBlankSpace(StringblankSpace){
Stringregex="\\s+";
returnPattern.matches(regex,blankSpace);
}

/**
*验证中文
*@paramchinese中文字符
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckChinese(Stringchinese){
Stringregex="^[\u4E00-\u9FA5]+$";
returnPattern.matches(regex,chinese);
}

/**
*验证日期(年月日)
*@parambirthday日期,格式:1992-09-03,或1992.09.03
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckBirthday(Stringbirthday){
Stringregex="[1-9]{4}([-./])\\d{1,2}\\1\\d{1,2}";
returnPattern.matches(regex,birthday);
}

/**
*验证URL地址
*@paramurl格式:http://blog.csdn.net:80/xyang81/article/details/7705960?或http://www.csdn.net:80
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckURL(Stringurl){
Stringregex="(https?://(w{3}\\.)?)?\\w+\\.\\w+(\\.[a-zA-Z]+)*(:\\d{1,5})?(/\\w*)*(\\??(.+=.*)?(&.+=.*)?)?";
returnPattern.matches(regex,url);
}

/**
*<pre>
*获取网址URL的一级域名
*http://www.zuidaima.com/share/1550463379442688.htm->>zuidaima.com
*</pre>
*
*@paramurl
*@return
*/
publicstaticStringgetDomain(Stringurl){
Patternp=Pattern.compile("(?<=http://|\\.)[^.]*?\\.(com|cn|net|org|biz|info|cc|tv)",Pattern.CASE_INSENSITIVE);
//获取完整的域名
//Patternp=Pattern.compile("[^//]*?\\.(com|cn|net|org|biz|info|cc|tv)",Pattern.CASE_INSENSITIVE);
Matchermatcher=p.matcher(url);
matcher.find();
returnmatcher.group();
}
/**
*匹配中国邮政编码
*@parampostcode邮政编码
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckPostcode(Stringpostcode){
Stringregex="[1-9]\\d{5}";
returnPattern.matches(regex,postcode);
}

/**
*匹配IP地址(简单匹配,格式,如:192.168.1.1,127.0.0.1,没有匹配IP段的大小)
*@paramipAddressIPv4标准地址
*@return验证成功返回true,验证失败返回false
*/
publicstaticbooleancheckIpAddress(StringipAddress){
Stringregex="[1-9](\\d{1,2})?\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))";
returnPattern.matches(regex,ipAddress);
}

}
原文链接:https://www.f2er.com/regex/359607.html

猜你在找的正则表达式相关文章