Page 1 of 1

Change text to upper or lower case BBcode

Posted: Wed Dec 27, 2017 11:28 am
by steven
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:

Code: Select all

[Ucase]{TEXT}[/Ucase]
HTML replacement:

Code: Select all

<div style="text-transform: uppercase";>{TEXT}</div>
Help line:

Code: Select all

[Ucase]TEXT[/Ucase]
this Sentence will be Changed on the Next line.
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]
HTML replacement:

Code: Select all

<div style="text-transform: lowercase";>{TEXT}</div>
Help line:

Code: Select all

[Lcase]TEXT[/lowerc][/Lcase]
THIS SENTENCE will be ChanGed on the Next LINE.
THIS SENTENCE will be ChanGed on the Next LINE.