Help for this page

Select Code to Download


  1. or download this
    substr $string, 0, 0, 'a';
    
  2. or download this
    substr ($string, 0, 0) = 'a';
    
  3. or download this
    my $string = 'a';
    $string .= 'bcde';