One more take on this just for completeness. Normalise the string by decoding twice and then do the replacement.
#!/usr/bin/perl use warnings; use strict; use HTML::Entities; my $line = qq{” 3”}; my $decode_1 = decode_entities $line; my $decode_2 = decode_entities $decode_1; print qq{$line\n}; print qq{$decode_1\n}; print qq{$decode_2\n}; $decode_2 =~ s/\x{201D}/'/g; #' print qq{$decode_2\n};
Wide character in print at C:\perm\dev\_new.pl line 12. Wide character in print at C:\perm\dev\_new.pl line 13. ” 3” ” 3” ” 3” ' 3'
The symbols here are the double quotes and the warnings are as expected.

I have a general rule of thumb: decode often (it doesn't hurt), encode ONCE (or your life will be a misery and you'll have strings of junk like the one you had). :-)


In reply to Re: quotes substitution by wfsp
in thread quotes substitution by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.