mirror of
https://gitee.com/dgflash/oops-plugin-framework.git
synced 2026-05-09 22:02:45 +08:00
18 lines
401 B
TypeScript
18 lines
401 B
TypeScript
/*
|
|
* @Author: dgflash
|
|
* @Date: 2022-07-26 15:29:57
|
|
* @LastEditors: dgflash
|
|
* @LastEditTime: 2022-09-02 12:08:25
|
|
*/
|
|
|
|
/** 正则工具 */
|
|
export class RegexUtil {
|
|
/**
|
|
* 判断字符是否为双字节字符(如中文字符)
|
|
* @param string 原字符串
|
|
*/
|
|
static isDoubleWord(string: string): boolean {
|
|
return /[^\x00-\xff]/.test(string);
|
|
}
|
|
}
|