You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
substr takes a 4th argument - a replacement. If you specify it, you get a #FAILTRAN error. Per the documentation;
my $s = "The black cat climbed the green tree";
my $z = substr $s, 14, 7, "jumped from"; # climbed
# $s is now "The black cat jumped from the green tree"
The text was updated successfully, but these errors were encountered:
substr takes a 4th argument - a replacement. If you specify it, you get a #FAILTRAN error. Per the documentation;
The text was updated successfully, but these errors were encountered: