I'm very confused about this. In most programming languages, there are string.ToUpperCase()
, string.ToLowerCase()
, sometimes Capitalize()
(which capitalize the first letter of the string), even ToTitleCase()
which capitalize every first letter of everyword.
But why isn't there any ToCommonSenseCase()
? The one that capitalize the first letter of each sentence? Why doesn't any language have it? I thought it should be the first utility function to implement case-wise.