This tool allows users to modify text in various ways, such as changing the case (e.g., uppercase, lowercase, title case), removing extra spaces (trimming leading or trailing spaces, or replacing multiple spaces with a single one). It's useful for cleaning up and standardizing text for consistency or specific formatting needs.
Configuration Options
Case Settings | Defines the desired case style to apply to the input text.
- Unchanged - keeps the case as-is
- Sentence case - converts the text applying sentence case, where the first letter of the first word in a sentence is capitalized, while the rest of the words are in lowercase
- UPPER CASE - converts the text by capitalizing all letters
- lower case - converts the text, where every letter is converted to its lowercase form
- Title Case - converts the text so that the first letter of each major word is capitalized
- InVeRsE cAsE - converts the text by inverting the case of each letter (uppercase to lowercase and vice versa)
Example
Input Text - This is an example text.
UPPER CASE - THIS IS AN EXAMPLE TEXT.
|
Remove Whitespaces | Defines whether to remove extra whitespaces from the input text. This option
respects the language-specific whitespace rules and ensures that the text formatting
remains correct for the given language.
- Removes multiple consecutive spaces and replaces them with a single space.
- Trims leading and trailing spaces.
- Preserves necessary spaces within the text to maintain readability and correct formatting.
Example
Input Text - This is an example text.
Output Text - This is an example text.
|