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.
 
Cool, thanks a lot!, i have it working now :)

Herfried K. Wagner said:
Hello,



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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top