我希望在聊天应用程序中检测非英语键盘字符。
现在,我使用以下正则表达式来识别语言,例如俄语和普通话。
const languageRegEx = /[^\x00-\x7F]+/gi;
这一直工作得很好,但是我现在遇到了一个问题,在聊天中使用表情符号会被上面的正则表达式捕获。
我已经尝试使用以下命令从输入字符串中删除表情符号:
const ranges = [
'[\u00A0-\u269f]',
'[\u26A0-\u329f]',
// The following characters could not be minified correctly
大家好,我想在我们的网站上添加微信的分享链接按钮,就像其他的一样:
<a class="skype social-icon" href="https://web.skype.com/share?url=http://example.com&text=I wanted you to see this site" target="_blank" title="Skype"><i class="fa fa-skype fa-lg"></i></a>
&