一、例子
const test = 'ab碧果果def'; console.log(this.GetChinese(test));
二、代码
// 只提取汉字 GetChinese(strValue) { // eslint-disable-line if (strValue !== null && strValue !== '') { const reg = /[u4e00-u9fa5]/g; return strValue.match(reg).join(''); } return ''; }