この記事では主に
C#よく使われる定期検証http関数を紹介し、IP検証と価格検証のためのC#をサンプルとともに分析します。正の整数検証の関連操作スキルについては、必要な友人が参照できるようにします
この記事では、C# でよく使用される通常の検証関数について説明し、参考のために共有します。 . IP アドレスの検証/// <summary> /// Ip地址验证 /// </summary> public static bool CheckIp(string ip) { bool result = false; Regex ipReg = new Regex(@"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\. (\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$"); if (ipReg.IsMatch(ip)) { result = true; } return result; }
2. 価格の検証
/// <summary> /// 价格验证 /// </summary> /// <param name="priceStr"></param> /// <returns></returns> public bool CheckPrice(string priceStr) { bool result = false; Regex regex = new Regex(@"^\d+(\.\d{1,2})?$", RegexOptions.IgnoreCase); Match match = regex.Match(priceStr); if (match.Success) { result = true; } return result; }
3. 正の整数の検証
/// <summary> /// 正整数验证 /// </summary> public static bool CheckPositiveInteger(string numStr) { bool result = false; Regex regex = new Regex(@"^[1-9]\d*$", RegexOptions.IgnoreCase); Match match = regex.Match(numStr); if (match.Success) { result = true; } return result; }
以上がC#でよく使われる定期検証関数のサンプルコードを詳しく解説の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。