我花了很多时间试图解决我尝试过的这个问题,但没有成功。我只需要验证一个文本框:
有效链:
10%
0%
1111111.12%
15.2%
10
2.3
无效链:
.%
12.%
.02%
%
123456789123.123
我需要使用这些有效链验证文本框,支持按键事件。
我试过了:
Private Sub prices_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles wholeprice_input_new_item.KeyPress, dozenprice_input_new_item.KeyPress, _
detailprice_input_new_item.KeyPress, costprice_input_new_item.KeyPress
Dim TxtB As TextBox = CType(sender, TextBox)
Dim fullText As String = TxtB.Text & e.KeyChar
Dim rex As Regex = New Regex("^[0-9]{1,9}([\.][0-9]{1,2})?[\%]?$ ")
If (Char.IsDigit(e.KeyChar) Or e.KeyChar.ToString() = "." Or e.KeyChar = CChar(ChrW(Keys.Back))) Then
If (fullText.Trim() <> "") Then
If (rex.IsMatch(fullText) = False And e.KeyChar <> CChar(ChrW(Keys.Back))) Then
e.Handled = True
MessageBox.Show("You are Not Allowed To Enter More then 2 Decimal!!")
End If
End If
Else
e.Handled = True
End If
End Sub
注意:正则表达式必须使用可选的百分比符号验证(最多 2 个小数位和 9 个整数)。
请帮忙,我很沮丧试图解决这个问题而没有成功