- or download this
%title = ( value => 'Welcome to my website!',
char_ct => 22,
...
word_ct => 5,
repeat_ct => 2 );
etc...
- or download this
%tags = ( title => { value => 'Welcome to my website!',
char_ct => 22,
...
char_ct => 31,
word_ct => 5,
repeat_ct => 2 } );
- or download this
$title{value} = 'Welcome to my website!';
- or download this
$tags{title}{value} = 'Welcome to my website!';
- or download this
( $num_chars, $num_words ) = count_chars_words( $tags{title} );
...
my $value = ${ $hashref }{value};
# count stuff and return
}
- or download this
$tags{keywords}{val_list} = [ ( split( ', ', $tags{keywords}{value} )
+) ];
print ${ $tags{keywords}{val_list} }[2]; # pop