char-alphabetic?
-- r7rs
Definition predicate
;
char-alphabetic?
(from vonuvoli
);Procedure variants:
((character-ascii-alphabetic) -> (true))
character-ascii-alphabetic
;true
;((character-alphabetic) -> (true))
character-alphabetic
;true
;((character) -> (false))
scheme:char
-- (scheme char)
;scheme
-- (scheme)
;(char-alphabetic? char) (char-numeric? char) (char-whitespace? char) (char-upper-case? letter) (char-lower-case? letter)
These procedures return
#t
if their arguments are alphabetic, numeric, whitespace, upper case, or lower case characters, respectively, otherwise they return#f
.Specifically, they must return
#t
when applied to characters with the Unicode properties Alphabetic, Numeric_Digit, White_Space, Uppercase, and Lowercase respectively, and#f
when applied to any other Unicode characters. Note that many Unicode characters are alphabetic but neither upper nor lower case.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.