输入字符串 ///
赞
踩
/// <summary>
/// 校验输入的内容是否为邮箱
/// </summary>
/// <param name="inputData">输入字符串</param>
/// <returns></returns>
public static bool IsEmail(string inputData)
{
Regex RegEmail = new Regex("^\\s*([A-Za-z0-9_-]+(\\.\\w+)*@(\\w+\\.)+\\w{2,5})\\s*$");
Match m = RegEmail.Match(inputData);
return m.Success;
}
使用方式:
/// <summary>
/// 验证邮箱
/// </summary>
private void RegularVerify()
{
string email = m_Email.text;
string affirmEmail = m_AffirmEmail.text;
if (email == "")
{
Debug.Log("未填邮箱!");
return;
}
if (affirmEmail == "")
{
Debug.Log("未确认邮箱!");
return;
}
if (!IsEmail(email))
{
Debug.Log("邮箱正则验证不对!");
return;
}
if (!IsEmail(affirmEmail))
{
Debug.Log("二次邮箱正则验证不对!");
return;
}
if(email != affirmEmail)
{
Debug.Log("两次邮箱不一样!");
return;
}
Hide();
Debug.Log("提现成功!");
}
我们经常会使用到邮箱验证,这是js的验证方式:
RewardWithDraw() {
var reg = /^\w+\@+[0-9a-zA-Z]+\.(com|com.cn|edu|hk|cn|net)$/;
var accounttext = this.account.string;
var accountAffirm = this.accountAffirm.string;
if (accounttext == "") {
console.log("未绑定邮箱");
return;
}
if (reg.test(accounttext)) {
console.log("正则验证通过!");
}
else {
console.log(reg.test(accounttext)+"正则验证不通过!")
return;
}
if (accountAffirm == "") {
console.log("未确定邮箱");
return;
}
if (reg.test(accountAffirm)) {
console.log("正则验证通过!");
}
else {
console.log(reg.test(accountAffirm)+"正则验证不通过!")
return;
}
if(accounttext!=accountAffirm){
console.log("两次输入邮箱不一样!");
return;
}
if(accounttext==accountAffirm){
console.log("验证通过");
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。