Capitalize Text
Convert text into uppercase, lowercase, title case, or sentence case.
include_once $_SERVER['DOCUMENT_ROOT'] . "/lib/lib.php"; $toolName = "Capitalize Text"; $toolSlug = "capitalize-text"; $toolCategory = "text-tools"; $toolCategoryName = "Text Tools"; $toolContent = [ 'about' => 'Capitalize Text converts text into different capitalization styles such as uppercase, lowercase, title case, and sentence case.', 'howto' => [ 'Paste or type your text into the input box.', 'Select the capitalization style.', 'Click Convert Text.', 'Copy the formatted result if needed.' ], 'why' => 'Capitalize Text helps writers, developers, and editors quickly format text without manually editing every word.', 'faq' => [ [ 'q' => 'What styles are supported?', 'a' => 'Uppercase, lowercase, title case, and sentence case.' ], [ 'q' => 'Does it change punctuation?', 'a' => 'No. It only changes letter capitalization.' ], [ 'q' => 'Is this tool free?', 'a' => 'Yes. The tool is completely free.' ] ] ]; include_once $_SERVER['DOCUMENT_ROOT'] . '/inc/tools/related-tools-helper.php'; $relatedTools = getAutoRelatedTools($toolSlug, $toolCategory, 5); include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/header.html"; ?>
include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/nav.html"; ?>Convert text into uppercase, lowercase, title case, or sentence case.