Re: replaceregexp problem

2005-10-18 Thread Gilbert Rebhan
Hi, Jeffrey E Care wrote: > Play around with the @flags & @byline; I think those will be able to solve > your problem. > yup = did it. Thanks !! bye4now, Gilbert - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: replaceregexp problem

2005-10-18 Thread Jeffrey E Care
Play around with the @flags & @byline; I think those will be able to solve your problem. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere v7 Release Engineer WebSphere Build Tooling Lead (Project Mantis) Gilbert Rebhan <[EMAIL PROTECTED]> wrote on 10/18/2005 01:41:02 PM: > Hi, > > i want to

Re: replaceregexp problem

2005-07-22 Thread Frank W. Zammetti
Thanks Chad, that did the trick perfectly! -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Fri, July 22, 2005 2:43 pm, Chad Armstrong said: > Hi Frank, > The * looks a little weird below in the "match" string, * means 0 or > more of the

Re: replaceregexp problem

2005-07-22 Thread Juergen Hermann
On Fri, 22 Jul 2005 14:36:22 -0400 (EDT), Frank W. Zammetti wrote: regex != glob ==> s/*/.*/ >Hi all... having some trouble getting a regex replace to work... I have a >JSP which contains the following line: >Version 3.0Build >306301/01/2005 >I have a task in my build script like so: >match="<

Re: replaceregexp problem

2005-07-22 Thread Chad Armstrong
Hi Frank, The * looks a little weird below in the "match" string, * means 0 or more of the preceding character, which I don't think is what you want. Try it with .* instead and see if that helps. Chad On 7/22/05, Frank W. Zammetti <[EMAIL PROTECTED]> wrote: > Hi all... having some trouble getti