mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-12-19 15:34:08 +00:00
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
10 lines
325 B
C#
10 lines
325 B
C#
using Ryujinx.Common.Helper;
|
|
|
|
namespace Ryujinx.HLE.HOS.Applets.SoftwareKeyboard
|
|
{
|
|
public static class CharacterValidation
|
|
{
|
|
public static bool IsNumeric(char value) => Patterns.Numeric.IsMatch(value.ToString());
|
|
public static bool IsCJK(char value) => Patterns.CJK.IsMatch(value.ToString());
|
|
}
|
|
}
|