StringCase

Parameters
source string

Text string.

upper boolean

True: 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
return type
string
Source code
native StringCase takes string source, boolean upper returns string