private boolean checkUuid(String uuid){ boolean isUuid = false; if (uuid.matches("(\\w{8}(-\\w{4}){3}-\\w{12}?)")) return true; return isUuid; }原文链接:https://www.f2er.com/regex/359099.html
private boolean checkUuid(String uuid){ boolean isUuid = false; if (uuid.matches("(\\w{8}(-\\w{4}){3}-\\w{12}?)")) return true; return isUuid; }原文链接:https://www.f2er.com/regex/359099.html