mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-05-11 19:21:18 +08:00
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
/**
|
|
* 正则工具
|
|
*/
|
|
export default class RegexUtil {
|
|
/**
|
|
* 判断字符是否为双字节字符(如中文字符)
|
|
* @param string 原字符串
|
|
*/
|
|
public static isDWORD(string: string): boolean {
|
|
return /[^\x00-\xff]/.test(string);
|
|
}
|
|
}
|