RegEx question

Dar Scott dsc at swcp.com
Fri Apr 9 02:22:20 EDT 2004


On Friday, April 9, 2004, at 12:02 AM, Yves COPPE wrote:

> Can someone help me to make it run fine ?

Your regex will match a string that has a date in it someplace, that 
is, anyplace.

Put a \A at the start of the regex to match the start of the string.
Put a \z at the end of the regex to match the end of the string.

That will get rid of matching strings with extra characters at the 
start and end.

Dar Scott



More information about the use-livecode mailing list