ESLSTR Subroutine
Determine whether the characters in a string are digits or punctuation marks.
call IsDigitOrPunc(STRING_SV, RETURN_BV)
STRING_SV
The string whose characters you want examined.
RETURN_BV
The identifier for a boolean variable to hold the result of this operation.
Description
Use this subroutine to determine whether all the characters in STRING_SV are either digits or punctuation marks.
The subroutine uses RETURN_BV to return true (1) if they are and false (0) if not.
See Also
IsDigitOrPuncFunction( ) Function