CheckStringIsValid 实现
Return True:输入非法,不是设置的正则表达是值
Return False:设置正常值
正则表达式输入数字和字母:[^a-zA-Z0-9]
bool UFunctionLib::CheckStringIsValid(const FString str,const FString Reg) { FRegexPattern Pattern(Reg); FRegexMatcher regMatcher(Pattern,str); regMatcher.SetLimits(0,str.Len()); return regMatcher.FindNext(); }原文链接:https://www.f2er.com/regex/358806.html