MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / isAlphaNum

Method isAlphaNum

vm/JavaAPI/src/java/net/URIHelper.java:644–646  ·  view source on GitHub ↗

Test if a character is a US-ASCII alpha (A-Z,a-z) or number (0-9).

(int ch)

Source from the content-addressed store, hash-verified

642 * Test if a character is a US-ASCII alpha (A-Z,a-z) or number (0-9).
643 */
644 static boolean isAlphaNum(int ch) {
645 return isAlpha(ch) || isNumeric(ch);
646 }
647
648 /**
649 * Test if a character is a US-ASCII alpha (A-Z,a-z).

Callers

nothing calls this directly

Calls 2

isAlphaMethod · 0.95
isNumericMethod · 0.95

Tested by

no test coverage detected