Files
HX_MapEditor/Assets/Scripts/Utils/APIs.cs

11 lines
192 B
C#
Raw Normal View History

2025-06-14 13:46:24 +08:00
using System.Text.RegularExpressions;
public class APIs
{
public static bool IsUInt(string str)
{
Regex myReg = new Regex(@"\d+$");
return myReg.IsMatch(str);
}
}