in reply to Re: String character replacement based on position
in thread String character replacement based on position
orsubstr($str,8,1) = uc(substr($str,8,1));
$_ = uc for substr($str,8,1);
Update: Probably should ignore the latter. Harder to read, surely slower and no real benefit.
|
|---|