RSS | Module Info | Add a review of Ctype
Ctype
(0.01)
It is unclear why this module is necessary. All of the tests it provides can be realized by a pattern match using POSIX character classes, so this module's isxdigit() function (as an example) can be replaced by matching against /[[:xdigit:]]/. For upper- and lowercasing, Perl has builtin functions which are much shorter to type. In other words, there is nothing here which plain Perl doesn't already do.
Aristotle Pagaltzis - 2005-03-07T20:36:20 (permalink)
Was this review helpful to you?
Yes
No

