输入框时间校验
Unity InputField输入框时间校验
public static class InputFiledFormat
{
///
///
///
public static void DateTimeCkeck(this InputField input)
{
//监听输入字符
input.onValueChanged.AddListener(e =>
{
if (e.Length == 5)
{
if (System.Text.RegularExpressions.Regex.IsMatch(e.Substr
输入框时间校验最先出现在Python成神之路。
共有 0 条评论