Formatting Text
Change Case
Converts text to Uppercase, Lowercase, or Title Case.
- UPPER CASE: "hello" -> "HELLO"
- lower case: "HELLO" -> "hello"
- Title Case: "hello world" -> "Hello World"
Trim Spaces
Removes spaces from the beginning, end, or both sides of a text.
- BOTH: " hello " -> "hello"
- LEFT: " hello" -> "hello"
- RIGHT: "hello " -> "hello"