titlecase
Appearance
See also: title case
English
[edit]Etymology
[edit]Noun
[edit]titlecase (countable and uncountable, plural titlecases)
- (computing, countable, uncountable) The variant of the letter that is used when this letter appears in the beginning of the sentence.
- 2012, Tom Christiansen, brian d foy, Larry Wall, Programming Perl: Unmatched power for text processing and scripting
- In ASCII, there are uppercase letters and lowercase letters, but in Unicode, there is also a third sort of case, called titlecase.
- 2012, Tom Christiansen, brian d foy, Larry Wall, Programming Perl: Unmatched power for text processing and scripting
- (computing) Such letter.
Verb
[edit]titlecase (third-person singular simple present titlecases, present participle titlecasing, simple past and past participle titlecased)
- (computing, transitive) To convert to titlecase form.
- 2012, Wesley Chun, Core Python Applications Programming[1]:
- For example, if we wanted to titlecase the
BlogPost
title, you would simply call thetitle()
filter like this:<h2>{{ post.title|title }}</h2>