C#判断输入的字符串中是否含有大写字母,小写字母,数字,字符

  1. System.Text.RegularExpressions.Regex.IsMatch(argValue, "[A-Z]")
  2. System.Text.RegularExpressions.Regex.IsMatch(argValue, "[0-9]")
  3. System.Text.RegularExpressions.Regex.IsMatch(argValue, "[a-z]")
  4. System.Text.RegularExpressions.Regex.IsMatch(argValue, "[/u0000-/u00FF]")
  5. 返回True:有匹配项;False:没有匹配项
 

你可能感兴趣的:(C#)