Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 246 Bytes

String.md

File metadata and controls

19 lines (16 loc) · 246 Bytes

TCHAR UCS-2 | UTF-16

FString::Printf(TEXT("%05d"), num);
FString = TEXT("")

Regex

 FRegexPattern RegexPattern(Pattern);
 FRegexMatcher TextMatcher(RegexPattern, Target);
 if (TextMatcher.FindNext())
 {
	 
 }