in reply to Re: regex related...search and delete
in thread regex related...search and delete

It's a fix format and it's working now. Thank you for your solution, May be I'll try this some other time.
  • Comment on Re^2: regex related...search and delete

Replies are listed 'Best First'.
Re^3: regex related...search and delete
by LanX (Saint) on Jan 14, 2013 at 10:53 UTC
    > It's a fix format and it's working now.

    no it's not, chorobas solution will delete any "L " outside of parens too.

    if its really a fix format, use something like s/\(L (\d+) W (\d+)\)/($1 $2)/g

    Cheers Rolf