さまざまなキーワードを含むハッシュがあります。ここで、文字列内のこれらのキーワードの数を見つけたいと思います。
foreach ループを使用してコードの一部を書きました。
use strict;
use warnings;
my $string = "The invitro experiments are conducted on human liver microsom. "
. " These liver microsom can be cultured in rats.";
my %hash = (
"human" => 1,
"liver" => 1,
"microsom" => 1,
);
for my $nme (keys %hash){
# Some code which I am not sure
}
期待される出力:human:1; liver:2; microsom:3
誰かがこれで私を助けることができますか?
ありがとう