Files
HX_MapEditor/Assets/Scripts/Utils/APIs.cs
2025-06-14 13:46:24 +08:00

11 lines
192 B
C#

using System.Text.RegularExpressions;
public class APIs
{
public static bool IsUInt(string str)
{
Regex myReg = new Regex(@"\d+$");
return myReg.IsMatch(str);
}
}