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
    # parses text like:
    # name = japhy  age = "22"  lang = 'Perl'
    ...
        ( \S+ )
      )
    }xg;
    
  3. or download this
    # parses text like:
    # name = japhy  age = "22"  lang = 'Perl'
    ...
        ( \S+ )
      )
    }xg;