Help for this page

Select Code to Download


  1. or download this
    my $string = <<STRING;
    A Title
    ...
    Date added:  April 20th, 2005
    Data:  some other data
    STRING
    
  2. or download this
    my @fizzbin = ( $string =~ m{
        (\w+)\n                     # Grab the title
    ...
                                    # captured
        Data:\s+([^\n]+)\n          # Grab the data
    }xmgs);