lcfirst method
Convert the first character of the given string to lower-case.
Implementation
String lcfirst() {
if (isEmpty) {
return this;
}
return lower()[0] + substring(1);
}
Convert the first character of the given string to lower-case.
String lcfirst() {
if (isEmpty) {
return this;
}
return lower()[0] + substring(1);
}