mirror of
https://github.com/nsnail/ns-ext.git
synced 2025-04-19 19:22:50 +08:00

* <chore> * 1.0.7 * <adjust> * <chore> * <chore> * <refactor> * <doc> * <doc> * <feat> + Unicode,UnicodeDe * <revert> * <fix> * bugfix * <feat> 从资源文件读取Description * <feat> 从资源文件读取Description-可继承 * <fix> 将一个对象序列化成json文本 * <chore> * 调整一下日志格式 * feat: * 泛型特性本地化资源描述 * 添加测试项目 * <chore> * feat: enum、string * feat: long 类型增加rand方法 * feat: ToInvString * fix: ToInvString * fix: ToInvString * fix: ParameterFormat bug * [BLD] [SKIP CI]
23 lines
544 B
C#
23 lines
544 B
C#
namespace NSExt.Extensions;
|
|
|
|
/// <summary>
|
|
/// CharExtensions
|
|
/// </summary>
|
|
public static class CharExtensions
|
|
{
|
|
/// <summary>
|
|
/// 是否数字或大小写字母
|
|
/// </summary>
|
|
public static bool IsAsciiLetterOrDigit(this char me)
|
|
{
|
|
return (((uint)me - 'A') & ~0x20) < 26 || (uint)me - '0' < 10;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 是否base64字符
|
|
/// </summary>
|
|
public static bool IsBase64Character(this char me)
|
|
{
|
|
return IsAsciiLetterOrDigit(me) || me is '+' or '/' or '=';
|
|
}
|
|
} |