Help for this page

Select Code to Download


  1. or download this
    split(/\|/, ...)
    
  2. or download this
    my $re = qr/\|/;
    split($re, ...)
    
  3. or download this
    my $re = "\\|";  # \|
    split($re, ...)
    
  4. or download this
    my $str = "|";             # |
    my $re = quotemeta($str);  # \|
    split($re, ...)
    
  5. or download this
    my $sep = $arr[2];
    split(quotemeta($sep), ...)