20 lines
369 B
Plaintext
20 lines
369 B
Plaintext
:sig
|
|
String to_lower(String s)
|
|
|
|
:params
|
|
s : the string to be converted
|
|
return value : returns a version of 's' where all upper case characters have been changed into lower case
|
|
|
|
:see
|
|
>string
|
|
|
|
:content
|
|
Returns a lower-case version of `s`.
|
|
|
|
This function is not yet Unicode-aware.
|
|
|
|
Related:
|
|
|
|
- PHP: `strtolower()`
|
|
- JavaScript / Node.js: `String.prototype.toLowerCase()`
|