Change text to upper or lower case BBcode

Post Reply
steven
Posts: 133
Joined: Sun Oct 01, 2017 3:08 pm

Change text to upper or lower case BBcode

Post 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.
Post Reply