正则验证命名是否合法

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

 string regg = @"^[^\\/:\*\?""<>|]{1,120}$";

            if (!Regex.IsMatch(command.NewName, regg))
            {  Console.WriteLine("不合法");
            }
            else {

                Console.WriteLine("合法");
            }

 

转载于:https://my.oschina.net/u/3911753/blog/1920947

你可能感兴趣的:(正则验证命名是否合法)