私が試みたこの問題を解決するのに何時間もかかりましたが、成功しませんでした。必要なのは、テキストボックスを検証することだけです:
有効なチェーン:
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 桁)。
助けてください、成功せずに問題を解決しようとしてとてもイライラしています