Help for this page

Select Code to Download


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