BloombergLP::bdlb::CharType::isAlnum

Return whether character is alphanumeric.

Synopsis

Declared in <bdlb_chartype.h>

static
bool
isAlnum(char character);

Description

Return true if the specified character is in the ALNUM category (i.e., [0-9A-Za-Z]), and false otherwise.

Return Value

true if character is alphanumeric, and false otherwise

Parameters

NameDescription
charactercharacter to classify