Help for this page

Select Code to Download


  1. or download this
    $foo = qq{^snafu^|^foobar^\n};
    
    ...
             /xms;
    $TEXT_QUAL = $1;
    $FIELD_SEP = $2;
    
  2. or download this
    $foo =~ /\G$TEXT_QUAL(.*?)$TEXT_QUAL[$FIELD_SEP\n]/xmsgc;
    
  3. or download this
    $foo =~ /\G\$TEXT_QUAL(.*?)\$TEXT_QUAL[\$FIELD_SEP\n]/xmsgc;
    
  4. or download this
    $foo =~ /\G\\$TEXT_QUAL(.*?)\\$TEXT_QUAL[\\$FIELD_SEP\n]/xmsgc;
    
  5. or download this
    $LIT_TEXT_QUAL = qq{\\$TEXT_QUAL};
    $LIT_FIELD_SEP = qq{\\$FIELD_SEP};
    
    $foo =~ /\G$LIT_TEXT_QUAL(.*?)$LIT_TEXT_QUAL[$LIT_FIELD_SEP\n]/xmsgc;