Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my @line = extract_bracketed( $text, '<>');
    
    print Dumper(\@line);
    
  2. or download this
    $VAR1 = [
              undef,
              'A line with B<bold>, I<italic>, and B<I<bold and italic>> t
    +ext.',
              undef
            ];