c# - Simple RegEx Example -


i'm horrible @ regex please bare me here:

i need match first character can , next 2 have rs.

so...

xrs123445 - match

thanks!

this regex you're looking for:

^.rs.* 

this match on of these:

  • xrs123445
  • 4rsabc
  • yrs

Comments

Popular posts from this blog

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -