Navigation

Operators and Keywords

Function List:

C++ API

: isalnum (s)

Return a logical array which is true where the elements of s are letters or digits and false where they are not.

This is equivalent to (isalpha (s) |isdigit (s)).

See also: isalpha, isdigit, ispunct, isspace, iscntrl.

Package: octave