Using RegEx?

  • Thread starter Thread starter Smoke
  • Start date Start date
S

Smoke

It is possible to use Regular Expressions to match text in VB.net?
Basically, my idea is to check if for example there was something diferent than [a-Z] (letters) on the text typed on a TextBox and
return true or false, or, for example, check if you have writed values in the correct way with regular expressions...

how i can do that?
 
Hello,

Smoke said:
It is possible to use Regular Expressions to match
text in VB.net?

Have a look at the methods of the 'System.Text.RegularExpressions.Regex'
class.
 
Back
Top