我需要一个正则表达式来匹配所有 unicode 表情符号。我需要这个来检查不和谐消息中是否有 Unicode 表情符号。
// Here is a example of matching one Unicode Emoji
message.content.match(/😊/g)
// or two
message.content.match(/😇|😊/g)
// and three
message.content.match(/😇|😊|😈/g)
// then so on.
我已经用这种方法点赞了最后 300 个左右的表情符号,然后它停止工作,发送各种错误和东西。
有一个更好的方法吗?如果有的话,可以给我举个例子吗?我是编码新手,并不真正理解正则表达式和其他一些东西,所以举个例子会有很大帮助。我还在 Visual Studio Code 上使用 node.js 编写 JavaScript 代码。
哆啦的时光机
Qyouu
呼唤远方
相关分类