Page 1 of 1

regular expression help

Posted: Wed Nov 09, 2005 10:25 pm
by dabombst
how can i delete the everything from "errored" to the end of the path using regluar expression?

\\06_Pmt_scheme__7_aircraft.xls","Errored","Adelphia_1999_2003_180536",""

output=\06_Pmt_scheme__7_aircraft.xls",

Thanks for the help

Posted: Wed Nov 09, 2005 11:05 pm
by s_reynisson
Find errored.*\\
Replace <nothing>
I have used POSIX regular expression syntax, which can be selected from the Editor page of the Preferences dialog box.
Pls note that for this to work the data must be on a single line, as shown below using the code tag. HTH

Code: Select all

\\06_Pmt_scheme__7_aircraft.xls","Errored","Adelphia_1999_2003_180536",""output=\06_Pmt_scheme__7_aircraft.xls",