C# IP正则表达式

2021-02-10 09:18

阅读:468

标签:str   class   post   static   pos   ati   public   ali   reg   

1 public static bool IsValidIp(string strIn)
2         {
3             bool b = Regex.IsMatch(strIn, @"^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$");
4 
5             return b;
6         }

 

C# IP正则表达式

标签:str   class   post   static   pos   ati   public   ali   reg   

原文地址:https://www.cnblogs.com/dotnetHui/p/8529078.html


评论


亲,登录后才可以留言!