private boolean checkUuid(String uuid){ boolean isUuid = false; if (uuid.matches("(\\w{8}(-\\w{4}){3}-\\w{12}?)")) return true; return isUuid; }
本文共 197 字,大约阅读时间需要 1 分钟。
private boolean checkUuid(String uuid){ boolean isUuid = false; if (uuid.matches("(\\w{8}(-\\w{4}){3}-\\w{12}?)")) return true; return isUuid; }
转载于:https://my.oschina.net/yygh/blog/711260