March 2010
Beginner
760 pages
18h 51m
English
HLA supports literal character set constants. These cset constants make it easy to initialize cset variables at compile time and allow you to easily pass character set constants as procedure parameters. An HLA character set constant takes the following form:
{ Comma_separated_list_of_characters_and_character_ranges }The following is an example of a simple character set holding the numeric digit characters:
{ '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }When specifying a character set literal that has several contiguous values, HLA lets you concisely specify the values using only the starting and ending values of the range thusly:
{ '0'..'9' }You may combine characters and various ...