Capitalize Sentence
Capitalize every word in a sentence.
Overview and Example
sklib_capitalizeFirstSentence("this sentence is lowercase.")# The first letter of every word in the sentence will always be capitalized.
sklib_capitalizeFirstSentence("this sentence is lowercase.")
# Returns: This Sentence Is Lowercase.
# The rest of the sentence will always be lowercase.
sklib_capitalizeFirstSentence("this SENTENCE is loWerCaSE.")
# Returns: This Sentence Is Lowercase.Last updated