Help for this page
my @field = split ('\\|', $string);
my @field = split (/\|/, $string);
my @field = split (qr/\|/, $string);