isAlpha, isDigit, isOctDigit, isHexDigit, isAlphaNum :: Char -> Bool toUpper, toLower :: Char -> Char ... isAlpha c = isUpper c || isLower c isDigit c = c ...
確定! 回上一頁