Help for this page

Select Code to Download


  1. or download this
    substr($string, (length $string)/2, 0) = '-';
    
  2. or download this
    substr($string, 4, 0) = '-';
    
  3. or download this
    $string =~ s/(.{4})(?=.)/$1-/g;