我的要求是在我的datagridview的某些列中只允许数字.
、、、和。示例输入是<
、、、、等-
<
2.5
1-15.5
>10
>12.54
<75
我正在使用正则表达式检查以下模式匹配是我的代码
If System.Text.RegularExpressions.Regex.IsMatch(val, "^[\d.-]+$") Then
Return True
Else
Return False
End If
但这只接受数字,.
这-
意味着如果我通过val="2.5"
或返回 trueval="5-10"
所以我的问题是如何为其他符号(>
,<
)