如何将自定义表情符号转换为数组?

时间:2020-07-29 17:47:46

标签: javascript node.js discord discord.js

我正在尝试将消息中的所有表情符号转换为数组。我已经尝试过了:

const myArray = message.attachments.array();

这:

const myArray = Array.from(message.attachments);

但它们都返回:[]

1 个答案:

答案 0 :(得分:0)

您可以检查消息是否包含带有正则表达式(regex)的表情符号。 例如:

let array = [],
    rgx = /(:)/g, // This will check for the emoji syntax e.g. :mali_borivoje:
    item;

while(item = rgx.exec()) {
    array.push(item[1]);
    array.join(' ');
}

注意:此代码仅用于展示目的,对于您而言可能开箱即用。您可以根据您的代码库和意图对其进行相应的更新。