I would like to remove the first letter and replace the second one by its lowercase
Example :
a = 'iSvalid' to a = 'svalid'
I’ve tried strrep( a,'i','') which gives 'Svalid' but I would like also to convert the first capital letter to lower case.
You can also use brackets: