[thelist] ASP/RegExp

Jay Dorsey evolt at hostfx.net
Thu Oct 3 12:28:07 CDT 2002


I'm not terribly familiar w/ ASP's flavor of regex, as I mostly deal w/
ColdFusion, but I do believe a period inside of a class is a literal.

Maybe try

sPattern = "<<wttoc>>([\n]|.)*<</wttoc>>"


jay
-----Original Message-----
From: thelist-admin at lists.evolt.org
[mailto:thelist-admin at lists.evolt.org]On Behalf Of Chris Marsh
Sent: Thursday, October 03, 2002 1:17 PM
To: thelist at lists.evolt.org
Subject: RE: [thelist] ASP/RegExp


Josh

> Here is a great series of articles from 4GuysFromRolla about
> Regular Expressions
>
> http://4guysfromrolla.com/webtech/031500-1.shtml
> http://4guysfromrolla.com/webtech/031500-1.2.shtml
> http://4guysfromrolla.com/webtech/031500-1.3.shtml
>
> It's a three part series. Really helpful. Once you read this you will
> have no problems creating the regular expressions you need.

This is a nice set of tutorials, but doesn't really get specific enough
for my needs. For example:

sPattern = "<<wttoc>>.*<</wttoc>>"

sPattern matches "<<wttoc>>Hello There<</wttoc>>" as expected. It also
matches "<<wttoc>>Hello* There<</wttoc>>" as expected. It doesn't match
"<<wttoc>>Hello
There<</wttoc>>" as expected. If I wish to also match the latter case, I
would have thought that:

sPattern = "<<wttoc>>[\n.]*<</wttoc>>"

Would have proved successful, but now nothing is matched.

Regards

Chris Marsh


--
For unsubscribe and other options, including
the Tip Harvester and archive of thelist go to:
http://lists.evolt.org Workers of the Web, evolt !




More information about the thelist mailing list