Help for this page

Select Code to Download


  1. or download this
    my ( $second_word ) = $string =~ m{\|([^|]*)\|};
    
  2. or download this
    my ( $second_word ) = $string =~
      m{
    ...
           )         # end capture
           \|        # another "|"
      }x;