Regex Help

Peter Haworth pete at lcsql.com
Sat Sep 27 12:23:24 EDT 2014


Hi Skip,
Not sure what can come before /after the string but here's a start

.*/point-.*-landed\.html.*

That will find your string with any number of chars before or after it.  If
you need to check for it at the start of a line, replace ".*" with a "^" at
the start of the regexp.

Pete
lcSQL Software
On Sep 26, 2014 2:04 PM, "Magicgate Software - Skip Kimpel" <
skip at magicgate.com> wrote:

> Hey LC / Regex gurus,
>
> I need help creating a regular expression that will filter out all
> instances where the pattern looks like this:
>
> /point-XXXXXXX-landed.html
>
> Obviously the "XXXXXX" section varies from item to item and is also of
> different character lengths.
>
> Anybody willing to give this a shot?
>
> SKIP
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



More information about the use-livecode mailing list