| Applications of string-of-char-list?. | | | The function blank-string? determines if a string is formed entirely of white space characters.
The function numeric-string? is a predicate that returns true if the string consists exclusively of decimal digits. This is, for instance,
useful to check the form input of dates and time in some server-based web applications. The version of numeric-string? in the lib/general.scm
of LAML is slightly more general than the version shown above (it allows + or - signs as well, depending on an optional parameter).
|