case¶
- Data type:
- case
- Description:
- Do a case conversion.
- Possible values:
Value Effect upperConvert all letters of the string to upper case lowerConvert all letters of the string to lower case capitalizeUppercase the first character of each word in the string ucfirstConvert the first letter of the string to upper case lcfirstConvert the first letter of the string to lower case uppercamelcaseConvert underscored upper_camel_casetoUpperCamelCaselowercamelcaseConvert underscored lower_camel_casetolowerCamelCase- Example:
Code:
10 = TEXT 10.value = Hello world! 10.case = upper
Result:
HELLO WORLD!