Help for this page

Select Code to Download


  1. or download this
    my @field = split ('\\|', $string);
    
  2. or download this
    my @field = split (/\|/, $string);
    
  3. or download this
    my @field = split (qr/\|/, $string);