1
で
を置き換える:検索と私は文を検索し、このような文字列一致したハッシュ値と、それを交換したいのPerl
my $sentence = "abc def hello hi";
$sentence =~ s/abc def/$hash{'abc def'}/g;
私は正しい出力を得ていないのですが。 誰でも助けてくれますか?
正しい出力は何ですか? '$ hash {'abc def'}'の内容は何ですか? –
$ hash {'abc def'}の値hello hi – siri