Quick Start

General Text Case

This section covers the general text case transformations used most frequently in document automation.

Upper, Lower & Swap Case

Method Alternate Methods Description Usage Example User Input Output
upper upper, uppercase, upper case, upper_case Converts all text to uppercase {{variable | upper}} Hello World HELLO WORLD
lower lower, lowercase, lower case, lower_case Converts all text to lowercase {{variable | lower}} Hello World hello world
swap swap, swapcase, swap case, swap_case Swaps the case {{variable | swap}} Hello World hELLO wORLD

Title, Cap Words & Special Caps

Method Alternate Methods Description Usage Example User Input Output
title title, titlecase, title case, title_case Capitalize all words of a string, including the word after an aprostrophe {{variable | title}} this is mr. o'brian's cat This Is Mr. O'Brian'S Cat
capwords - Capitalize all words of a string, excluding the word after an aprostrophe {{variable | capwords}} this is mr. o'brian's cat This Is Mr. O'brian's Cat
caps caps, specialcaps, special caps, special_caps Similar to Capwords, but with some commonly capitalised letters {{variable | caps}} this is mr. o'brian's cat This Is Mr. O'Brian's Cat

Capitalize, Sentence Case & Special Sentence

Method Alternate Methods Description Usage Example User Input Output
capitalize capitalize, capitalise Capitalize only the first letter of a string. {{variable | capitalize}} this is mr. o'brian's cat. it is a tuxedo cat. This is mr. o'brian's cat. it is a tuxedo cat.
sentence case sentence case, sentencecase, sentence_case This is regular sentence case {{variable | sentence case}} this is mr. o'brian's cat. it is a tuxedo cat. This is mr. o'brian's cat. It is a tuxedo cat.
sentence sentence, specialsentence, special sentence, special_sentence Similar to sentence case, but with some commonly capitalised letters {{variable | sentence}} this is mr. o'brian's cat. it is a tuxedo cat. This Is Mr. O'Brian's cat. It is a tuxedo cat.