MCPcopy Create free account
hub / github.com/ddf-project/DDF / isAlphaNumeric

Method isAlphaNumeric

core/src/main/java/io/ddf/util/Utils.java:331–335  ·  view source on GitHub ↗
(String str)

Source from the content-addressed store, hash-verified

329 }
330
331 public static boolean isAlphaNumeric(String str) {
332 Pattern p = Pattern.compile("^[a-zA-Z0-9_-]*$");
333 Matcher m = p.matcher(str);
334 return m.find();
335 }
336
337 public static class JsonSerDes {
338

Callers 1

validateColumnNamesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected