Help for this page

Select Code to Download


  1. or download this
    @line = split /\Q$char\E/, $_;
    
  2. or download this
    $a='abcdef*2dfd';
    $char='*';
    $char=quotemeta($char);
    @line=split/$char/, $a;
    print "@line";