- 4.66.2.27. -
Table of Contents
4. Standard Units
4.66. Strings - Large string manipulation unit
4.66.2. Strings Unit Procedures and Functions
4.66.2.27. IsValidIdent function
4.66.2.27. IsValidIdent function
Targets: MS-DOS, OS/2, Win32
Strings Unit
Tests for a valid Pascal identifier.
Declaration:
function IsValidIdent(const Ident: String ): Boolean;
Remarks:
IsValidIdent returns TRUE if the given string is a valid Pascal
identifier. Identifiers are tokens that have a special meaning in TMT Pascal.
Identifiers begin with a letter (A-Z or a-z) or underscore, and may contain
letters, underscores, and digits (0-9).
- 4.66.2.27. -