私は次のハッシュ構造を持っています
test => '/var/tmp $slot'
my $slot_number = 0; # just another variable.
次に、キーの値をフェッチして、$test_commandという変数に格納します。
今、私はと呼ばれる別の変数$slot
に置き換える必要がありますので、
これを試しています$test_command
$slot_number
$test_command =~ s/$slot/$slot_number/g; this does not work
$test_command =~ s/$slot/$slot_number/ee; does not work
$test_command =~ s/\$slot/\$slot_number/g; this does not work
期待される出力は
$test_command = /var/tmp 0