i'm trying to make a regular expression for an input-field of a winform.
I wanna force the user to enter strings, so not started with a number...
But my regex doesn't work...
Somebody sees what i'm doing wrong?
dim myRegEx As regex
myRegEx = New Regex("^(\d)*(\w)")
Dim match As Match = myRegEx.Match(gegevens)
If (match.Success) Then
...
doaction
...
Else
errormessage
End If