StringCase
- Parameters
source stringText string.
upper booleanTrue: turn to UPPER CASE. False: turn to lower case.
- comment
Turns the text to upper/lower case and returns it. Only works for ASCII characters (A-Z), not Unicode (Дружба).
- pure
- This function is pure. For the same values passed to it, it will always return the same value.
- patch
1.13
- Source
- common.j (suggest an edit or discuss on Github)
- return type
string- Source code
native StringCase takes string source, boolean upper returns string