Help for this page

Select Code to Download


  1. or download this
    my $stringToProcess = join($SEP_CHAR, split(/\Q$character\E/, $string)
    +);
    
  2. or download this
    $character = qr/\Q$character\E/ if $character eq '+';
    my $stringToProcess = join($SEP_CHAR, split($character, $string));