Hai, My string must be 3 characters.Firs t character must be integers in the range 1-9. and second character must be * and third character must be the number with in the range 0 to 9.
I wrote this code to mathch this expression.
Dim txt As Regex = New Regex("[^1-9][*][0-9]")
but it does nt work.Can you give some idea?
I wrote this code to mathch this expression.
Dim txt As Regex = New Regex("[^1-9][*][0-9]")
but it does nt work.Can you give some idea?
Comment