Help for this page

Select Code to Download


  1. or download this
    if ( $line =~ /$DELIMITER/ ) { ...
    
  2. or download this
    if ( $line =~ /\Q$DELIMITER/ ) { ...
    
  3. or download this
    if ( index($line, $DELIMITER) >= 0 ) { ...