- or download this
#! perl
use strict;
...
$yaml =~ s/\bFred\b/FRED/;
$hash = Load $yaml;
dd $hash;
- or download this
0:26 >perl 1186_SoPW.pl
{ Barney => "FRED", Fred => "Wilma", Frederick => "Mary" }
0:30 >
- or download this
$yaml =~ s/(?<=\n)Fred(?=:)/FRED/g;