Attention
TYPO3 v8 has reached its end-of-life March 31st, 2020 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.
There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.
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!