CamelCase Procedure
Converts a text with spaces to a text in camel case, i.e. the first letter of each word, except the first word, is capitalized and all characters except A-Z, a-z and 0-9 are removed.
Signature
CamelCase(TextWithSpaces: Text) : Text
Parameters
TextWithSpaces
Text
The text with spaces.
Returns
Text
The input text in pascal case.
Example
CamelCase('This is a test')
Result: 'thisIsATest'
This documentation is generated from Smart Toolbox v26.1.242147.0