JCL Help:UnicodeIsIdentifierStart
From Project JEDI Wiki
Jump to navigationJump to searchJCL Help: UnicodeIsIdentifierStart Function
Search in JCL Help
Search in all projects
Summary
Tests whether the codepoint is allowed as initial character of an identifier.
Pascal
function UnicodeIsIdentifierStart(C: UCS4): Boolean;
Parameters
Parameters | Description |
C: UCS4 | The unicode codepoint (character) to test. |
Return Value
If the specified codepoint can begin an identifier the function returns True, otherwise the function returns False.
Description
UnicodeIsIdentifierStart tests whether the specified unicode codepoint is a character that can begin an identifier, ie. the character must be a letter (upper-, lower- or titlecase or other) or a letter representing a number.
About
Unit
Donator
Mike Lischke
Notes
UnicodeIsIdentifierStart could be replaced by (UnicodeIsAlpha or UnicodeIsLetterNumber) and not UnicodeIsModifier
Contribute to this help topic
This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page