tytalk-builder
Version:
一个帮助开发者快速构建属于自己的聊天机器人的开源SDK。
20 lines (17 loc) • 319 B
JavaScript
/**
* Created by hfy on 18/6/29.
*/
/**
* 非中文字符
* @param string
* @returns {null}
*/
function getNumAndLetters(string) {
if (strValue != null && strValue != "") {
var reg = /[\u4e00-\u9fa5]/g;
return strValue.replace(reg, "")
} else {
return ""
}
}
module.exports = getNumAndLetters