我正在使用蒙面TextBox,我想查看输入(总字符数必须为14), 是否有一个属性为蒙面TextBox处理这个或我应该使用一个函数? 有人能帮助我吗?
答案 0 :(得分:1)
你应该能够做到这一点:
' Remove spaces
Dim textNoSpaces As String = TextBox1.Text.Replace(" ", "")
If textNoSpaces.Length <> 14 Then
' Do something here
Else
' Do something else, if desired
End If
屏蔽是一种显示,它与用户输入的实际字符串无关。