Table of Contents

PascalCase Procedure

Codeunit Text Mgt.

Converts a text with spaces to a text in pascal case, i.e. the first letter of each word is capitalized and all characters except A-Z, a-z and 0-9 are removed.

Signature

PascalCase(TextWithSpaces: Text) : Text

Parameters

TextWithSpaces Text

The text with spaces.

Returns

Text

The input text in pascal case.

Example

PascalCase('This is a test') Result: 'ThisIsATest'

This documentation is generated from Smart Toolbox v27.1