文字列または数字で始まる特定の値を確認する方法。ここにコードを添付しました。idendifierが期待されるようにエラーが発生しています。
code
----
Dim i As String
dim ReturnValue as boolean
i = 400087
Dim s_str As String = i.Substring(0, 1)
Dim regex As Regex = New Regex([(a - z)(A-Z)])
ReturnValue = Regex.IsMatch(s_str, Regex)
error
regx is type and cant be used as an expression