IsSpace()

<< Click to Display Table of Contents >>

Navigation:  Explain™ Control Language  > Library Routines > Miscellaneous functions >

IsSpace()

Description

Determine whether an ASCII number refers to white-space.

 

Returns TRUE if AsciiNumb is a white-space character (0x09–0x0D or 0x20). Each of these routines returns FALSE if AsciiNumb does not satisfy the test condition.

 

Type

REGULAR FUNCTION

 

Usage

Result = IsSpace(AsciiNumb)

 

AsciiNumb

INDEX

ASCII number of the character.

Result

BOOL

TRUE = Character is white-space.

FALSE = Character is not white-space.

 

Related Topics