case¶
- Data type:
- case
- Description:
- Do a case conversion.
- Possible values:
Value Effect upper
Convert all letters of the string to upper case lower
Convert all letters of the string to lower case capitalize
Uppercase the first character of each word in the string ucfirst
Convert the first letter of the string to upper case lcfirst
Convert the first letter of the string to lower case uppercamelcase
Convert underscored upper_camel_case
toUpperCamelCase
lowercamelcase
Convert underscored lower_camel_case
tolowerCamelCase
- Example:
Code:
10 = TEXT 10.value = Hello world! 10.case = upper
Result:
HELLO WORLD!