Thứ Hai, 26 tháng 8, 2024

[C#] Check String Is Alphanumeric

    public bool IsAlphanumeric(string input)
    {
        foreach (char c in input)
        {
            if (!char.IsLetterOrDigit(c))
            {
                return false;
            }
        }
        return true;
    }
    public bool IsAlphanumeric(string input)
    {
        var regex = new Regex("^[a-zA-Z0-9]*$");
        return regex.IsMatch(input);
    }

Không có nhận xét nào :

Đăng nhận xét