Pular para o conteúdo principal

IsValidIdent

Tests for a valid identifier.

Structure

IsValidIdent(const Ident: string): Boolean;

Parameters

Return Value

Description

IsValidIdent returns true if the given string is a valid identifier. An identifier is defined as a character from the set ['A'..'Z', 'a'..'z', '_'] followed by zero or more characters from the set ['A'..'Z', 'a'..'z', '0..'9', '_']. |