Help for this page

Select Code to Download


  1. or download this
        if ( $token->[0] eq 'S' and $token->[1] eq 'form' ){...}
    
  2. or download this
        if ( $token->is_start_tag( 'form' ) ){...}
    
  3. or download this
        if ( $token->is_comment ){...}
    
  4. or download this
        my $attributes = $token->attr;