如何在变量(Perl)中存储所有语言字符?

时间:2014-01-21 14:11:27

标签: perl

我想在变量中存储瑞典语单词(Brännén)。但我无法将其存储在变量中。如何将其存储在变量中?我需要使用任何模块吗?

1 个答案:

答案 0 :(得分:3)

使用UTF-8编码源代码,然后使用

use utf8;                    # Tell Perl source code is encoded using UTF-8
my $var = "Brännén";

如果您要输出它,则需要对其进行编码。

use open ':std', ':locale';  # Tell Perl to decode and encode IO.
print("$var\n");