2010-09-04 代替引用符 Perl Perlの場合は、 my $s = "1"; # シングルクォーテーションの代替 q('abc$s'); # => 'abc$s' q!'abc$s'!; # => 'abc$s' # ダブルクォーテーションの代替 qq("abc$s"); # => "abc1" qq!"abc$s"!; # => "abc1"