Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
webpointz #1
Regex for matching a string not in a URL
Returning text from a database...want to find and replace any matching keyword,
with a string but ONLY if the keyword DOES NOT reside as part of a LINK.
How can I check to make sure that the keyword isn't anywhere within the LINK
tags??
webpointz Guest
-
Reg. string matching using reg-exp
Hi, I am a novice to perl programming. When I execute the following code, I get always "No Match". I guess my reg-exp is correct. I also tried... -
REGEX: matching AFTER a specific character
Hi all, Here is a code snippet, and yes I am going to use File::Basename to strip the file path/filename once I've stripped the entire path from... -
Array Sort Using Regex Matching Fails
Over the years, I have periodically played with this syntax of regex matching within an array sort. I have tried a lot of syntax changes. Never... -
Matching String
Hi again! Im saving some data of a configuration file in scalar var. My configuration file has something like this: mailaddr=mail1@yes.com... -
string matching
I need to remove $b from $a $a = "abc/\def/ghi" ; $b = "abc/\def"; Regards Kamal -
dneizer #2
Re: Regex for matching a string not in a URL
How about
Starting pattern
<a href="http://leo.dol.gov:8080/regex/regextester.cfm">keyword </a>
Regex
(>\s*\w*)(keyword )(\s*\w*<)
which doesn't match <a href=".....> or <\a>
The return code would be <cfoutput>\1newtext\3</cfoutput>
dneizer Guest



Reply With Quote

