in reply to Re^3: extra spaces between the characters in string
in thread extra spaces between the characters in string

Once again Thanks Dave, regex really reduces the code to great extend. Also , got the solution to extra spaces between character. It was problem of UTF-16 character encoding.

Thanks every one :). But I want to learn how write complex regex code. Can you tell me some good links for that .

  • Comment on Re^4: extra spaces between the characters in string

Replies are listed 'Best First'.
Re^5: extra spaces between the characters in string
by davido (Cardinal) on Jun 09, 2011 at 18:19 UTC

    Start with perlretut, then perlre, as well as perlop (the section on regexp quote like operators).

    But if you have $30 to spend, and a desire to really learn regular expressions, visit the O'Reilly site and order Mastering Regular Expressions (as of this moment, 3rd edition is current). There's no substitute for the best.


    Dave