I have an encoding question and would like to ask for help. I notice if I choose "UTF-8" as encoding, there are (at least) two double quotes " and . But when I choose "ISO-8859-1" as the encoding, I see the latter double quote becomes ¡°, or sometimes for example “.

Could anyone please explain why this is the case? How can match and replace it with " using regexp in perl?

Thanks a lot.

link|improve this question

69% accept rate
2  
Define “to choose UTF-8 as encoding”. Do you mean use utf8 for source code, or use open qw(:std :utf8) for streams, or something else altogether? – tchrist Jun 11 '11 at 0:21
See also this answer. – tchrist Jun 11 '11 at 0:26
feedback

2 Answers

up vote 3 down vote accepted

ISO-8859-1 is a one-byte-per-character encoding. The fancy Unicode double-quotes are not in the ISO-8859-1 character set. So what you are seeing is a multi-byte character represented as a sequence of ISO-8859-1 bytes.

To match these weird things, see the perlunicode man page, especially the \x{...} and \N{...} escape sequences.

To answer your question, try \x{201C} to match the Unicode LEFT DOUBLE QUOTATION MARK and \x{201D} to match the RIGHT DOUBLE QUOTATION MARK. You missed the latter in your question :-).

[update]

I should have provided my reference... Some nice gentleman in the UK has a page on ASCII and Unicode quotation marks. The plain vanilla ASCII/ISO-8859-1 double-quote is just called QUOTATION MARK.

link|improve this answer
thank you for your answer. :) So what is the name of the other plain double quotation mark? – Qiang Li Jun 11 '11 at 0:17
just QUOTATION MARK U+0022? – Qiang Li Jun 11 '11 at 0:18
@Qiang: Yes. I added an update with the link I should have included in the first place – Nemo Jun 11 '11 at 0:20
Best to use charnames ":full" and thence the likes of \N{EFT DOUBLE QUOTATION MARK} and the like. I mislike magic numbers in code, and 0x201C is certainly one such. – tchrist Jun 11 '11 at 0:22
@Qiang: You should get the uninames script if you want to know the names of code points. There is a lot more unicode-related stuff there in that directory, too. – tchrist Jun 11 '11 at 0:24
feedback

May be this answer helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.