Help for this page
@line = split /\Q$char\E/, $_;
$a='abcdef*2dfd'; $char='*'; $char=quotemeta($char); @line=split/$char/, $a; print "@line";