Re: Simple RegEx expresion

2006-01-26 Thread Mazhar
Hi George, Are you looking for a TCL script or a PERL regex expression, if you are using PERL then try the code what Dmitry Motevich has written if u need in TCL then try the below --- set x "Linz_Untauglich Dr." set result [regexp (_)(

Re: Simple RegEx expresion

2006-01-25 Thread John Doe
George Homorozeanu am Mittwoch, 25. Januar 2006 16.12: > I need it with RegEx, that's my problem. > > Thanks, > > George. > > "Xavier Noria" <[EMAIL PROTECTED]> schrieb im Newsbeitrag > news:[EMAIL PROTECTED] > > > On Jan 25, 2006, at 12:23, George Homorozeanu wrote: > >> I am very new in RegEx and

Re: Simple RegEx expresion

2006-01-25 Thread Dmitry
Hello George, Wednesday, January 25, 2006, 1:23:41 PM, you wrote: GH> Hi, GH> I am very new in RegEx and I want to be able to write an expresion that does GH> the following: GH> Return all the characters from a string starting from the 5-th character. GH> Given: GH> Linz_Untauglich Dr. GH>

Re: Simple RegEx expresion

2006-01-25 Thread George Homorozeanu
I need it with RegEx, that's my problem. Thanks, George. "Xavier Noria" <[EMAIL PROTECTED]> schrieb im Newsbeitrag news:[EMAIL PROTECTED] > On Jan 25, 2006, at 12:23, George Homorozeanu wrote: > >> I am very new in RegEx and I want to be able to write an expresion that >> does >> the followin

Re: Simple RegEx expresion

2006-01-25 Thread Randal L. Schwartz
> "George" == "George Homorozeanu" <[EMAIL PROTECTED]> writes: George> Hi, George> I am very new in RegEx and I want to be able to write an expresion that does George> the following: George> Return all the characters from a string starting from the 5-th character. Call me paranoid, but th

Re: Simple RegEx expresion

2006-01-25 Thread Xavier Noria
On Jan 25, 2006, at 12:23, George Homorozeanu wrote: I am very new in RegEx and I want to be able to write an expresion that does the following: Return all the characters from a string starting from the 5-th character. You want to do it with a regexp for some particular reason? That's t

Simple RegEx expresion

2006-01-25 Thread George Homorozeanu
Hi, I am very new in RegEx and I want to be able to write an expresion that does the following: Return all the characters from a string starting from the 5-th character. Given: Linz_Untauglich Dr. Result: Untauglich Dr. Thanks, George. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For add