Vocola.net
Vocola 3.1 Function Library
ToTitleCaseWord(text)
Namespaces LibraryString ► ToTitleCaseWord
Converts the specified text to a single "title case" word.
Syntax
ToTitleCaseWord(text)
Parameters
text
Text to convert to a title case word.
Return Value
A single-word title case version of text.
Remarks
Programmers use title case for multi-word variable names. For example, "number of items" converted to title case would be "NumberOfItems".
Examples
CopyTitle-case previous words
Title 2..9 = {Ctrl+Shift+Left_$1}{Ctrl+c} String.ToTitleCaseWord(Clipboard.GetText());
This command converts the specified number of words before the insertion point to title case. {Ctrl+Shift+Left_$1} selects 2 or more words, {Ctrl+c} copies them, Clipboard.GetText() retrieves them, and String.ToTitleCaseWord() converts them.

Assembly: VocolaFunctionLibrary (Module: VocolaFunctionLibrary) Version: 3.1.1.0 (3.1.1.0)