Change text to upper or lower case BBcode
Posted: Wed Dec 27, 2017 11:28 am
The following two BBcodes allow you to transform text into upper or lower case characters. After you create your code, highlight all the text to be transformed and select the command.
To tranform text to upper case use this BBcode.
Example Usage:
HTML replacement:
Help line:
this Sentence will be Changed on the Next line.
To tranform text to lower case use this BBcode.
Example Usage:
HTML replacement:
Help line:
THIS SENTENCE will be ChanGed on the Next LINE.
To tranform text to upper case use this BBcode.
Example Usage:
Code: Select all
[Ucase]{TEXT}[/Ucase]
Code: Select all
<div style="text-transform: uppercase";>{TEXT}</div>
Code: Select all
[Ucase]TEXT[/Ucase]
this Sentence will be Changed on the Next line.
To tranform text to lower case use this BBcode.
Example Usage:
Code: Select all
[Lcase]{TEXT}[/Lcase]
Code: Select all
<div style="text-transform: lowercase";>{TEXT}</div>
Code: Select all
[Lcase]TEXT[/lowerc][/Lcase]
THIS SENTENCE will be ChanGed on the Next LINE.