in reply to Re: Replacing a character in a string
in thread Replacing a character in a string
or with substr
substr($s, 0, 1, uc(substr($s, 0, 1)));
or
substr($s, 0, 1) = uc(substr($s, 0, 1));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Replacing a character in a string
by Tanktalus (Canon) on Nov 16, 2005 at 01:30 UTC | |
by chibiryuu (Beadle) on Nov 22, 2005 at 15:45 UTC |