Vocola.net
Vocola 3.1 Function Library
ToCamelCaseWord(text)
Namespaces LibraryString ► ToCamelCaseWord
Converts the specified text to a single "camel case" word.
Syntax
ToCamelCaseWord(text)
Parameters
text
Text to convert to a camel case word.
Return Value
A single-word camel case version of text.
Remarks
Programmers use camel case for multi-word variable names. For example, "number of items" converted to camel case would be "numberOfItems". It's called "camel case" because the resulting names are shaped something like a camel.
Examples
CopyCamel-case previous words
Camel 2..9 = {Ctrl+Shift+Left_$1}{Ctrl+c} String.ToCamelCaseWord(Clipboard.GetText());
This command converts the specified number of words before the insertion point to camel case. {Ctrl+Shift+Left_$1} selects 2 or more words, {Ctrl+c} copies them, Clipboard.GetText() retrieves them, and String.ToCamelCaseWord() converts them.

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