Help for this page

Select Code to Download


  1. or download this
    push @elements, $1  while
     (/\G\s*"(.*?)"/gc or
      /\G\s*'(.*?)'/gc or
      /\G\s*(\S+)/gc) or die "Argh";
    
  2. or download this
    push @elements, $1  while(
     (/\G\s*"(.*?)"/gc or
      /\G\s*'(.*?)'/gc or
      /\G\s*(\S+)/gc) or die "Argh" );
    
  3. or download this
    (push @elements, $1  while
      /\G\s*"(.*?)"/gc or
      /\G\s*'(.*?)'/gc or
      /\G\s*(\S+)/gc) or die "Argh";
    
  4. or download this
    syntax error at line 1, near "$1  while"