Re: [Regular Expression Help]

2001-02-08 Thread Alex
first strip out all the href tags then add href tags to all URLS Joe Sheble aka Wizaerd <[EMAIL PROTECTED]> wrote: I have some text, and in this text there may or may not be URLs. Some of these URLs may already be inside of an A HREF tag while others may not. I need a regular expressio

Re: Regular Expression Help

2001-02-08 Thread David Cummins
may not be URLs. Some of > these URLs may already be inside of an A HREF tag while others may not. I > need a regular expression that will find all the URLs (starting with > http:// or www. or email addresses) that are not already inside of HREF > tags and make them into valid HREF tags whi

RE: Regular Expression Help?

2001-02-22 Thread Phoeun Pha
: Thursday, February 22, 2001 10:35 AM To: CF-Talk Subject: Regular Expression Help? Hi, I'm trying to globally replace (with CF Studio) application variables with request variables in several sites. I can't figure out exactly how, as I don't know how to negate strings (as opposed to

Re: Regular Expression Help?

2001-02-22 Thread Jamie Jackson
Thursday, February 22, 2001 10:35 AM >To: CF-Talk >Subject: Regular Expression Help? > > >Hi, I'm trying to globally replace (with CF Studio) application >variables with request variables in several sites. I can't figure out >exactly how, as I don't know how to neg

Re: Regular Expression Help?

2001-02-22 Thread David Cummins
Firstly I'd like to mention that doing this is playing with fire. ;) Secondly, I'd suggest three replaces: 1. Replace application.cfm with an easily recognisable other string without application in the name. 2. Replace "([^a-zA-Z0-9])application.([a-zA-z])" with "\1request.\2". 3. Replace the fun

Re: Regular Expression Help?

2001-02-23 Thread Jamie Jackson
On Fri, 23 Feb 2001 10:33:10 +1300, in cf-talk you wrote: >Firstly I'd like to mention that doing this is playing with fire. ;) Yeah, of course it is ;) >Secondly, I'd suggest three replaces: >1. Replace application.cfm with an easily recognisable other string without >application in the name. >2

RE: Regular expression help

2001-03-15 Thread Douglas Malcolm
essage- From: Jeff Britts [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 11:50 AM To: CF-Talk Subject: Regular expression help Help for a regular expression idiot. I'm looking to remove all the characters between two tags: example from: asldfj lskdf jaskldf jklasdf jlas

Re: Regular expression Help

2001-03-23 Thread Savan Thongvanh
OT: are there any statistics on how many developers regexp has made bald? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@house

Re: Regular expression Help

2001-03-23 Thread Larry W. Virden
_always_ be the format you described, I use a regular expression like content="([^">]*)" and know that the stuff between the parens would be what I wanted. However, I see html all the time that adds newlines arbitrarily at white space... which means that you have to somehow

RE: Regular expression Help

2001-03-23 Thread Hayes, David
This works. #mid(theString,st.pos[3],st.len[3])# The two pieces are: 1) Creating the regularExpression 2) understanding the use of the "return subexpressions" attribute of reFind; check the documentation. I learned something just now about using it with a paren-ed regular

RE: Regular expression Help

2001-03-23 Thread Douglas Malcolm
Mallory, Try this: ]+')> That should return the string; Which you can then extract the date from. Good luck! Douglas Malcolm -Original Message- From: Mallory Woods [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 8:17 AM To: CF-Talk Subject: Regular express

RE: Regular expression Help

2001-03-23 Thread Scott Cavanaugh
This should work if you want the GMT included: REFINDNOCASE("mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 8:17 AM To: CF-Talk Subject: Regular expression Help Greetings All, I am in the process of developing a small headache with Regular Expressions... I have looked at all o

Re: Regular Expression Help

2001-07-26 Thread Dain Anderson
]# No alpha characters or punctuation found. Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: "John Barleycorn" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 6:42 PM Subject: Regula

Re: Regular Expression Help

2001-07-26 Thread John Barleycorn
quot;Dain Anderson" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: Regular Expression Help >Date: Thu, 26 Jul 2001 21:02:45 -0400 > >John, > >You almost had it (too many brackets): > > > Alpha character

RE: Regular Expression Help

2001-07-27 Thread Thomas Chiverton
> Dain, thank you very much. Is it safe to assume then that > anything else i > want to search for can be added by placing the definition > inside another > pair of brackets? Yeah, square brackets define a class to match against, and clasess are or'ed together. [^ ] would match everything tha

Re: Regular Expression Help

2001-07-27 Thread Dain Anderson
t; <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, July 27, 2001 1:39 AM Subject: Re: Regular Expression Help > Dain, thank you very much. Is it safe to assume then that anything else i > want to search for can be added by placing the defini

Re: Regular Expression Help

2001-07-27 Thread eric . laney
. They all use different notations, they all have quirks, and I still have to look it up in order to remember which "regular" expression I'm using. Maybe I'm missing something, but I haven't been able to take my knowledge of regexp that I

Re: Regular Expression Help

2001-07-27 Thread Dick Applebaum
they all have quirks, and I still >have to look it up in order to remember which "regular" expression I'm >using. > >Maybe I'm missing something, but I haven't been able to take my knowledge >of regexp that I learned from Perl and apply it to CF with any

multicharacter regular expression help

2001-08-19 Thread Conan Saunders
I need a regular expression to remove all characters from a string that are NOT in this list: comma, space, dash, plus, digit, or one of several two-letter codes such as "NM". This regular expression works for everything except the two-letter codes: REReplaceNoCase(TheInput,

Re: Regular expression help

2002-01-16 Thread Gyrus
> I have a field that will be populated with a first name and a last name, > what I want to do is make sure that the first letter of the first & last > name is uppercase and that all others are lower case. Could someone help > in a reg expression that will do this? I'm having problems finding

RE: Regular expression help

2002-01-16 Thread Christopher Olive
try it's capitalized! christopher olive, cto, vp of web development cresco technologies, inc 410.825.0383 http://www.crescotech.com -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 1:46 PM To: CF-Talk Subject: Regular expre

Re: Regular expression help

2002-01-16 Thread Douglas Brown
[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 11:20 AM Subject: RE: Regular expression help > try > > > it's capitalized! > > > christopher olive, cto, vp of web development > cresco technologies, inc > 410.825.0383 > http://www.crescotech.com > >

RE: Regular expression help

2002-01-16 Thread Christopher Olive
: Regular expression help That definately will not do it. There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug Brown - Original Message - From: "Christopher Olive" <[EMAIL PROTECTED]> To: "

Re: Regular expression help

2002-01-16 Thread Douglas Brown
. Doug Brown - Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 11:43 AM Subject: Re: Regular expression help > That definately will not do it. > > > There are two

RE: Regular expression help

2002-01-16 Thread Christopher Olive
day, January 16, 2002 3:00 PM To: CF-Talk Subject: Re: Regular expression help All refind does is find the starting position of a string. IE: #test# returns "0" I need it to change "hello world" to Hello World" There are two major products that come out of

Re: Regular expression help

2002-01-16 Thread Bryan Stevenson
PROTECTED] - Macromedia Associate Partner www.macromedia.com - Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 12:00 PM Subject: Re: Regular ex

RE: Regular expression help

2002-01-16 Thread James Ang
uch more elegant solution, in my opinion. :) Of course, RegExp has its uses. In your case, it isn't the most optimal solution. James. -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 12:00 PM To: CF-Talk Subject: Re: Regular expres

RE: Regular expression help

2002-01-16 Thread Bruce, Rodney (Contractor)
Here's a UDF I may not be the most eloquent but it does work. I used it to do tile casing. why my string is title ;o) //Changes a String to Title case Function TitleCase(title){ title = trim(title); //Caps first letter of string and Lower cases

RE: Regular expression help

2002-01-16 Thread Bruce, Rodney (Contractor)
There was a at the bottom, must have gotten cut off. -Original Message- From: Bruce, Rodney (Contractor) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 16, 2002 1:05 PM To: CF-Talk Subject: RE: Regular expression help Here's a UDF I may not be the most eloquent but it does

Re: Regular expression help

2002-01-16 Thread Jochem van Dieten
Douglas Brown wrote: > I have a field that will be populated with a first name and a last name, > what I want to do is make sure that the first letter of the first & last > name is uppercase and that all others are lower case. Could someone help > in a reg expression that will do this? It is

Re: Regular expression help

2002-01-16 Thread Douglas Brown
[EMAIL PROTECTED]> Sent: Wednesday, January 16, 2002 11:57 AM Subject: RE: Regular expression help > Use the UDF: capFirstTitle() > http://www.cflib.org/udf.cfm?ID=116 > > For your purpose, CF RegExp won't do it as well as what Ed Hodder > implemented with his U

quick regular expression question

2002-02-20 Thread Mark W. Breneman
I seem to be having a problem with this regular expression. Can anyone tell me why? It must be something simple. [[:space:]a-z0-9A-Z[:punct:][:space:]]+ All I am trying to do is select everything between some pesky div tags. Thanks

RE: Regular Expression Help

2002-03-01 Thread Shawn Grover
--Original Message- From: Jared Stark [mailto:[EMAIL PROTECTED]] Sent: Friday, March 01, 2002 2:11 PM To: CF-Talk Subject: Regular Expression Help Hello all. I am trying to write a simple search engine, and would like to replace certain commonly used prepositions from the search string such as 

Re: Regular Expression Help

2002-03-01 Thread Matthew Walker
Or you could use ListReplace with " " as the delimiter -- as long as you force everything lower case first. - Original Message - From: "Jared Stark" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 10:10 AM

Re: Regular Expression Help

2002-03-02 Thread James Sleeman
the prepositions that I would like to remove, however > the problem I have is that it is removing them when they are subsets of > other words, for example 'them' would become 'm' when removing 'the', > 'bag' would become 'bg' when re

Re: Regular Expression Help

2002-03-02 Thread Douglas Brown
om: "James Sleeman" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 4:28 AM Subject: Re: Regular Expression Help > On Sat, 2002-03-02 at 10:10, Jared Stark wrote: > > Hello all. I am trying to write a simple search engin

RE: Regular Expression Help

2002-03-03 Thread Pascal Peters
CTED]] Sent: zaterdag 2 maart 2002 13:29 To: CF-Talk Subject: Re: Regular Expression Help On Sat, 2002-03-02 at 10:10, Jared Stark wrote: > Hello all. I am trying to write a simple search engine, and would like > to replace certain commonly used prepositions from the search string > suc

RE: Regular Expression Help

2004-05-17 Thread Marlon Moyer
This should work. #mid(test,temp.pos[i],temp.len[i])# -- Marlon Moyer, Sr. Internet Developer American Contractors Insurance Group phone: 972.687.9445 fax: 972.687.0607 mailto:[EMAIL PROTECTED] www.acig.com > -Original Message- > From: Ian [mailto:[EMAIL PROTECTED] > Sent: Monday

RE: Regular Expression Help

2004-05-18 Thread Pascal Peters
On CFMX stTmp = REFindNoCase('msg:"(.*?)";',str,1,true); if(stTmp.pos[1]){ message = Mid(str,stTmp.pos[2],stTmp.len[2]); } else { message = ""; } ON CF5 stTmp = REFindNoCase('msg:"(([^"]|"[^;])*)";',str,1,true); if(stTmp.pos[1]){ message = Mid(str,stTmp.pos[2],stTmp.len[2]); } else { messag

Help with Regular expression

2004-05-19 Thread Thanh Nguyen
Hi All, I tried to do this regular _expression_, but having a hard time getting the result I want. So any help would be appreciated. Here's what I tried to achieve. 1. remove "The" from in at the beginning of the string. 2. replace period with space. 3. Numerals are treated as though spell

Regular Expression and HTML

2004-06-03 Thread jean-marc bottin
I got a RE that I have modified in order to parse some HTML and to only keep tag starting with a “ I have some HTML:                                        a   b   c   d             After using the RE I get that: cellSpacing=0 cellPadding=0 width="100%" borde

Quick Regular Expression Question.

2004-06-23 Thread Che Vilnonis
Hello all. I use the following to regular _expression_ to validate zipcodes. When a customer inputs a 9 digit zip code WITHOUT the hyphen, no error is set. (i.e. 902101444) How would I modify this to incorporate a mandatory hyphen when a 9 digit zip code is inputed and still work for all ot

Re: Regular Expression Help

2003-09-26 Thread Ben Doom
What version of CF?--Ben "the RegEx Ninja" Doomkelly wrote:>   Ok I suck at reg expressions.   Basically I have some data and within the> data there is some stuff I want to remove.  Example> > text text blah">http://www.blah.com">blah ">http://www.blah.com">blah> > blah blah blah text text> >

Re: Regular Expression Help

2003-09-26 Thread Claude Schneegans
>>Ok basically I want to remove everything from althoughit will be different on every line.This is tipically the situation why I developed CF_REextract (seehttp://www.contentbox.com/claude/customtags/tagstore.cfm?p=hf(see specs and examples)The tag will find all occurences, and return then in a qu

Java Regular Expression editor

2003-11-17 Thread peter . tilbrook
Can anyone remember where I can grab that cool Java-based RegEx editor? TIA! Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927 Important:  This e-mail is intended for the use of the ad

RE: Regular Expression Help

2004-11-05 Thread Pascal Peters
REReplaceNoCase(text,'^.* -Original Message- > From: Daniel Farmer [mailto:[EMAIL PROTECTED] > Sent: 05 November 2004 10:24 > To: CF-Talk > Subject: Regular Expression Help > > I'm searching a long string and looking for the value > > > what kind of

Re: Regular Expression Help

2004-11-05 Thread Daniel Farmer
Thanks Pascal... but I am having problems implementing ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183459 Archives:

RE: Regular Expression Help

2004-11-05 Thread Gavin Brook
al Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: 05 November 2004 10:43 To: CF-Talk Subject: RE: Regular Expression Help REReplaceNoCase(text,'^.* -Original Message- > From: Daniel Farmer [mailto:[EMAIL PROTECTED] > Sent: 05 November 2004 10:24 > To: CF

RE: Regular Expression Help

2004-11-05 Thread Pascal Peters
Pascal > -Original Message- > From: Daniel Farmer [mailto:[EMAIL PROTECTED] > Sent: 05 November 2004 11:10 > To: CF-Talk > Subject: Re: Regular Expression Help > > Thanks Pascal... but I am having problems implementing > > value="([^"]*)"

RE: Regular Expression Help

2004-11-05 Thread Pascal Peters
; From: Gavin Brook [mailto:[EMAIL PROTECTED] > Sent: 05 November 2004 12:11 > To: CF-Talk > Subject: RE: Regular Expression Help > > Pascal, > > Would it be possible for you to explain a bit more about what each part > of > the RegEx is doing? I'm trying to do someth

Regular expression in Homesite

2005-04-19 Thread Kevin Roche
Hi, Is there a person out there who is able to write a regulart expression that I can use in Homesite+ to change a line that says: To one that says can be any string Kevin Roche Objective Internet Ltd 01256 338 490

Visual Regular Expression tool

2003-07-15 Thread Michael Dinowitz
Download it now: http://www.cfregex.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.

Re: regular expression question

2003-08-01 Thread Michael Dinowitz
to write the regular expression to find 2 out of three > words in a row? I need to determine is a string has "and or" or "not and" > etc in the string. > > Thanks > ~| Archives: http://www.houseoffusi

Repost: Regular Expression Help

2003-08-14 Thread Patricia G . L . Hall
I tried to post this yesterday from the archives and I screwed it up. So.. reposting. I am dealing with a site that has been ripped apart by search and replace in Homesite+. Tags that used to look like:   stripped off of the and now look like this: ]*< Can anyone help me

regular expression to replace URL

2002-05-03 Thread Brook Davies
__ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.co

Re: Regular Expression Help (oops!)

2000-06-22 Thread Todd Ashworth
Sorry for the mixed up subject line .. I'm going to bed .. sheesh. - Original Message - From: Todd Ashworth <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 22, 2000 10:11 PM Subject: Re: Regular Expression Help > Application.cfm files are great for

Re: Help with regular expression

2001-11-12 Thread David Cummins
ent . David Seth Petry-Johnson wrote: > > I am trying to build a regular expression to test for valid CFSET statements > in a block of text. I have it working with one small issue: if a ">" > character appears on the right hand side of the equals sign, such as in > &g

Re: Help with regular expression

2001-11-12 Thread Seth Petry-Johnson
> Personally I don't think this is possible with regexs, but I'd love > to be corrected. It would need to be able to look for an even > number of quotes followed by a greater than sign. What I'm going to try now is to modify the regexp to distinguish between string data (anything enclosed in quot

Regular Expression E-mail Validation

2000-11-20 Thread Michael She
Hello, I've looked in the archives for a good regex email validation, however they don't seem to be bulletproof. Does anyone have a good RegEx to check an e-mail address? Thanks. -- Michael She I m a g i n e C o m m u n i c a t i o n s Company E-mail: [EMAIL PROTECTED] Personal E-mail: [EMA

Re: Regular Expression in CF

2000-12-28 Thread Michael Dinowitz
anyone out there tell me how I can use a regular expression to grab an > entire script block? Here is what I am using now: > .*|\s > This works for the following: > > src="<A HREF="http://images.foxnews.com/root_js.js">http://images.foxnews.com/ro

Re: Regular Expression in CF

2000-12-28 Thread Ryan
At 15:45 12/28/00 -0600, you wrote: >Can anyone out there tell me how I can use a regular expression to grab an >entire script block? Here is what I am using now: >.*|\s >This works for the following: > >src="<A HREF="http://images.foxnews.com/root_j

RE: Regular Expression in CF

2000-12-28 Thread BORKMAN Lee
- From: Brandon Behrens [<A HREF="mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>] Can anyone out there tell me how I can use a regular expression to grab an entire script block? Here is what I am using now: <script.*>.*|\s IMPORTANT NOTICE: This e-ma

RE: Regular Expression in CF

2000-12-28 Thread Seva Petrov
a Petrov > -Original Message- > From: Brandon Behrens [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 28, 2000 4:45 PM > To: CF-Talk > Subject: Regular Expression in CF > > > Can anyone out there tell me how I can use a regular > expression to grab an > entire scr

Re: Another regular expression question

2001-04-24 Thread Mark Woods
it]]*',attributes.usuario)# but it doesn't >work. > >BTW, some links of POSIX regular expression are welcome. > >thanks in advance > >~JAAV > > > ~~ Structure your ColdFusion code with Fusebox. Get the offi

RE: Another regular expression question

2001-04-24 Thread Paul Johnston
heck if a login name (given by the user) is valid or not. > > I'm using something like: > #REFindNoCase('[[:alpha]]*|[[:digit]]*',attributes.usuario)# but it doesn't > work. > > BTW, some links of POSIX regular expression are welcome. > > thanks in advance

Re: Another regular expression question

2001-04-24 Thread JAAV
Thanks Mark and Paul... it works!! - Original Message - From: "Paul Johnston" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, April 24, 2001 12:47 PM Subject: RE: Another regular expression question > using a ^ says "not one

Re: Bad Regular Expression Error

2001-05-22 Thread Dick Applebaum
Try it without the parens... you're not back-referencing anything. At 2:59 PM -0700 5/22/01, Eron Cohen wrote: >Why does this cause a "Bad Regular Expression" error? > >VARIABLES.this_body=rereplacenocase(this_body,"]*>(.*)<\/sc >ript[^>]*>",

Re[2]: Regular Expression Help

2001-02-10 Thread Carol Bluestein
Hi all. For a wonderful reference on regular expressions, go to Albany New York Cold Fusion User Group : http://www.anycfug.org/index.cfm Regular Expressions- Jerry Ela Special-View an excellent online presentation developed by Jerry Ela on Regular Expressions (A must see!) Other good info

Simple Regular Expression Question ($ and ^)

2002-01-14 Thread Jamie Jackson
Does CF's regex have an end/beginning of string anchor? (e.g. "$" and "^", respectively, in other languages) Thanks, __ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Acti

another quick regular expression question

2002-01-31 Thread Kola Oyedeji
Hi Can anyone explain why this regex does not match every title?(i'm using it in cfstuido on a directory of html and cfml files) <[ ]*title[ ]*>[ ]*[[:alpha:]]*[[:punct:]]*[ ]* It will not match untitled for example what am I doing wrong? Thanks in advance Kola ___

RE: Help with Regular expression

2004-05-19 Thread Matthew Walker
Why not simply use replaceList(). Str = replaceList(str, ".,1st,2nd,3rd,4th,5th,6th,7th,8th,9th,10th,&", " ,first,second,third,fourth,fifth,sixth,seventh,eighth,ninth,tenth, and ") then str = reReplaceNoCase(str, "^The[[:space:]]", "") then str = reReplace(str, "[^[:alnum:][:space:]]", "", "all"

RE: Help with Regular expression

2004-05-20 Thread Thanh Nguyen
Thanks, I figured it out. Thanh. -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 19, 2004 7:38 PM To: CF-Talk Subject: RE: Help with Regular _expression_ Why not simply use replaceList(). Str = replaceList(str, ".,1st,2nd,3rd,4th,5th,6th,7th,8

RE: Regular Expression and HTML

2004-06-03 Thread Pascal Peters
Add [^>]*> at the end of the regexp. If you are on mx, you can write a shorter regexp!! > -Original Message- > From: jean-marc bottin [mailto:[EMAIL PROTECTED] > Sent: donderdag 3 juni 2004 15:45 > To: CF-Talk > Subject: Regular _expression_ and HTML > > I got a RE that I have modified

Re: Regular Expression and HTML

2004-06-03 Thread jean-marc bottin
It works, thank you very much. Jean-Marc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Regular Expression and HTML

2004-06-03 Thread jean-marc bottin
It works, thank you. Jean-Marc [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Regular Expression and HTML

2004-06-03 Thread Pascal Peters
On mx: regexp = "<(?!/?(input|textarea|select|option)\b).*?>"; newtxt = REReplaceNoCase(txt,regexp,"","all"); > -Original Message- > From: jean-marc bottin [mailto:[EMAIL PROTECTED] > Sent: donderdag 3 juni 2004 16:06 > To: CF-Talk > Subject: Re: Regular _expression_ and HTML > > It wor

RE: Regular Expression and HTML

2004-06-03 Thread Jean-Marc Bottin
Even better, wouaw! Thanks, Jean-Marc -Message d'origine- De : Pascal Peters [mailto:[EMAIL PROTECTED] Envoyé : jeudi 3 juin 2004 16:08 À : CF-Talk Objet : RE: Regular _expression_ and HTML On mx: regexp = "<(?!/?(input|textarea|select|option)\b).*?>"; newtxt = REReplaceNoCase(txt,

Re: Quick Regular Expression Question.

2004-06-23 Thread Jerry Johnson
Lets see if I can break this down, and maybe the answer will fall out the other side. string containing only: 5 digits and 0 or 1 sets of ((0 or 1 dash or space) and four digits) So, if you got rid of the 0 or 1 dash or space, and made it a manditory space in the second optional set, you should

RE: Quick Regular Expression Question.

2004-06-23 Thread Pascal Peters
^\d{5}(-\d{4})?$ Your original one allowed a space too . If you want that it is ^\d{5}([- ]\d{4})?$ If you are not on cfmx, replace \d by [0-9] > -Original Message- > From: Che Vilnonis [mailto:[EMAIL PROTECTED] > Sent: woensdag 23 juni 2004 17:17 > To: CF-Talk > Subject: Quick Regular

RE: Quick Regular Expression Question.

2004-06-23 Thread Che Vilnonis
that seems to work. thank you Jerry.   -Original Message-   From: Jerry Johnson [mailto:[EMAIL PROTECTED]   Sent: Wednesday, June 23, 2004 11:27 AM   To: CF-Talk   Subject: Re: Quick Regular _expression_ Question.    #FORM.BillZip#)>   Lets see if I can break this down, and maybe the answ

Re: Quick Regular Expression Question.

2004-06-23 Thread Ben Doom
Currently, you have: ^[[:digit:]]{5}(( |-)?[[:digit:]]{4})?$ ( |-) represents a space or hypen.  If you just want a hypen, you don't need the parens, space, or pipe. ( |-)? means that the space or hypen is optional. So, if you want to force a hypen for 9-digit zipcodes, you would want ^[[:digit

Re: Quick Regular Expression Question.

2004-06-23 Thread Marlon Moyer
Here's a real handy site that I use http://www.regexlib.com Even has an online regex tester. Marlon On Wed, 23 Jun 2004 11:32:48 -0400, Che Vilnonis <[EMAIL PROTECTED]> wrote: > [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Java Regular Expression editor

2003-11-17 Thread Dave Carabetta
> Can anyone remember where I can grab that cool Java-based RegEx editor? > This what you're looking for? http://www.cfregex.com/ Regards, Dave. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: Java Regular Expression editor

2003-11-17 Thread peter . tilbrook
Indeed, thank you Dave! Peter Tilbrook Transitional Services - Enterprise eSolutions Centrelink (http://www.centrelink.gov.au) 2 Faulding Street Symonston ACT 2609 Tel: (02) 62115927  

Re: Regular expression in Homesite

2005-04-19 Thread Jochem van Dieten
Kevin Roche wrote: > > Is there a person out there who is able to write a regulart expression that > I can use in Homesite+ to change a line that says: > > > > To one that says > > > > can be any string Asuming does not contain any spaces replace http://www.houseoffusion.com/banne

RE: Regular expression in Homesite

2005-04-19 Thread Kevin Roche
Thanks Jochem. Works well I was using mailto:[EMAIL PROTECTED] Sent: 19 April 2005 11:42 To: CF-Talk Subject: Re: Regular expression in Homesite Kevin Roche wrote: > > Is there a person out there who is able to write a regulart expression that > I can use in Homesite+ to change a line

Regular expression changes in MX

2004-11-16 Thread Steve Brownlee
In ColdFusion 5, the statements below were valid and returned a proper regular expression: replaceList(list_URLFragmentsToIgnore, "$,[,],.,(,),{,},^,|,?,*,+,/" , "\$,\[,\],\.,\(,\),\{,\},\^,\|,\?,\*,\+,[/\]") REFindNoCase(RE_URLFragmentsToIgnore,"xx/system32/cmd.ex

Re: Visual Regular Expression tool

2003-07-15 Thread Critz
oi Michael!! I get a "windows cannot access the specified device,path or file. You may not have the appropriate permissions to access the item" WTF? Ctz Tuesday, July 15, 2003, 6:26:35 PM, you wrote: MD> Download it now: MD> http://www.cfregex.com MD>

Re: Visual Regular Expression tool

2003-07-15 Thread Michael Dinowitz
No clue. here's the direct link: http://www.cfregex.com/visualregex/kregexpeditor.zip There's no security on the directory and nothing that can stop it from being downloaded. If it was on the HoF server then I can understand there being a problem. Since I put in some of the google stuff we've been

RE: Visual Regular Expression tool

2003-07-15 Thread Chris Kief
I think he's talking about when he runs the executable. I'm receiving the same error on Windows XP Pro. chris >-Original Message- >From: Michael Dinowitz [mailto:[EMAIL PROTECTED] >Sent: Tuesday, July 15, 2003 7:33 PM >To: CF-Talk >Subject: Re: Visual Regular E

Re: Visual Regular Expression tool

2003-07-15 Thread Michael Dinowitz
:[EMAIL PROTECTED] > >Sent: Tuesday, July 15, 2003 7:33 PM > >To: CF-Talk > >Subject: Re: Visual Regular Expression tool > > > >No clue. here's the direct link: > >http://www.cfregex.com/visualregex/kregexpeditor.zip > >There's no security on the

Re: Visual Regular Expression tool

2003-07-15 Thread Critz
oi Michael!! oh sorry, I meant I get that when I try to run the exe on my copy of XP. ctz Tuesday, July 15, 2003, 10:33:04 PM, you wrote: MD> No clue. here's the direct link: MD> http://www.cfregex.com/visualregex/kregexpeditor.zip MD> There's no security

Re: Visual Regular Expression tool

2003-07-15 Thread Howie Hamlin
l Dinowitz" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, July 15, 2003 6:26 PM Subject: Visual Regular Expression tool > Download it now: > http://www.cfregex.com > ~~~

Re: Visual Regular Expression tool

2003-07-15 Thread Michael Dinowitz
tp://www.sys-con.com/coldfusion/readerschoice2003/index.cfm <<<< > >>> Find out how iMS Stacks up to the competition: http://www.coolfusion.com/imssecomparison.cfm > > - Original Message - > From: "Michael Dinowitz" <[EMAIL PROTECTED]> > To:

Re: Visual Regular Expression tool

2003-07-15 Thread Howie Hamlin
You should include license info in the ZIP. Thanks, Howie - Original Message - From: "Michael Dinowitz" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, July 15, 2003 11:17 PM Subject: Re: Visual Regular Expression tool > G

Re: Visual Regular Expression tool

2003-07-15 Thread Michael Dinowitz
:) > You should include license info in the ZIP. > > Thanks, > > Howie > > - Original Message - > From: "Michael Dinowitz" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Tuesday, July 15, 2003 11:17 PM > Su

Re: Visual Regular Expression tool

2003-07-16 Thread Jim Campbell
FYI - runs great on XP Pro. Thanks! - Jim Michael Dinowitz wrote: >No clue. here's the direct link: >http://www.cfregex.com/visualregex/kregexpeditor.zip >There's no security on the directory and nothing that can stop it from being >downloaded. >If it was on the HoF server then I can understand

Re: Visual Regular Expression tool

2003-07-23 Thread fred fred
on: http://www.coolfusion.com/imssecomparison.cfm > > - Original Message - > From: "Michael Dinowitz" > To: "CF-Talk" > Sent: Tuesday, July 15, 2003 6:26 PM > Subject: Visual Regular Expression tool > > > > Download it now: > > http://www.cfr

RE: Visual Regular Expression tool

2003-07-24 Thread webguy
C++ via the Trolltechs QT framework. WG -Original Message- From: fred fred [mailto:[EMAIL PROTECTED] Sent: 24 July 2003 03:05 To: CF-Talk Subject: Re: Visual Regular Expression tool what language is this written in? It looks like a GUI version of text2reg. http

RE: Repost: Regular Expression Help

2003-08-09 Thread Ben Doom
l Message- : From: Patricia G. L. Hall [mailto:[EMAIL PROTECTED] : Sent: Friday, August 08, 2003 8:41 AM : To: CF-Talk : Subject: Repost: Regular Expression Help : : : I tried to post this yesterday from the archives and I screwed it up. : So.. reposting. : : I am dealing with a site that has

<    1   2   3   >