Re: Remove everything left of a substring in a string

2008-04-01 Thread Nathan Strutz
string1 = "ColdFusion is an application server and software development framework used for the development of computer software"; string2 = "software development framework"; string3 = reReplace( string1, ".*(#string2#.*)", "\1") -- nathan strutz http://www.dopefly.com/ On Tue, Apr 1, 2008 a

RE: Remove everything left of a substring in a string

2008-04-01 Thread Andy Matthews
-Original Message- From: Steve Sequenzia [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2008 3:09 PM To: CF-Talk Subject: Remove everything left of a substring in a string I am trying to figure out the best way to remove all text that is left of a substring in a string. Sting

Remove everything left of a substring in a string

2008-04-01 Thread Steve Sequenzia
I am trying to figure out the best way to remove all text that is left of a substring in a string. Sting Example - "ColdFusion is an application server and software development framework used for the development of computer software" Substring Example - "software development framework" I need