language: Perl
licence: Other
Substring
my $s = "The black cat climbed the green tree"; my $color = substr $s, 4, 5; # black my $name = 'fred'; substr($name, 4) = 'dy';
my $s = "The black cat climbed the green tree"; my $color = substr $s, 4, 5; # black my $name = 'fred'; substr($name, 4) = 'dy';