Check whether a string is not equal to any of a list of strings

后端 未结 4 1692
野性不改
野性不改 2021-02-19 06:29

Is there a way to convert some code like this:

If someString <> \"02\" And someString <> \"03\" And someString <> \"06\" And someString <>         


        
4条回答
  •  日久生厌
    2021-02-19 07:23

    How about this?

    Imports System.Text.RegularExpressions    
    
    btnButton.Enabled = Regex.IsMatch(someString, "^0[2367]$")
    

提交回复
热议问题