[TriPython] Regular Expressions

Mark Hutchinson aikimark at aol.com
Tue Nov 8 15:10:30 EST 2016


I usually test my regex patterns at myregextester.com.


This pattern will match the alphanumeric and space characters starting at the beginning of the string:
"^[\w ]+\b"


I'm not sure what you are trying to match at the end of the string in your posted example.


Mark
-------------- next part --------------
   I usually test my regex patterns at myregextester.com.
   This pattern will match the alphanumeric and space characters starting at
   the beginning of the string:
   "^[\w ]+\b"
   I'm not sure what you are trying to match at the end of the string in your
   posted example.
   Mark


More information about the TriZPUG mailing list