my @field = split ('\\|', $string); #### my @field = split (/\|/, $string); #### my @field = split (qr/\|/, $string);