Help for this page

Select Code to Download


  1. or download this
    # parses text like:
    # name = japhy  age = "22"  lang = 'Perl'
    ...
        ( \S+ )
      )
    }xg;
    
  2. or download this
    while ( <DATA> ) {
      my %data = $_ =~ m{
    ...
          \S+
        )["']?
      }xg;