gpt4 book ai didi

JavaScript/符号 : counting the number of ✔'s in a string

转载 作者:行者123 更新时间:2023-11-28 18:51:21 25 4
gpt4 key购买 nike

我正在尝试计算给定字符串中的复选标记。我的字符串可能是:

var myString = "一✔二✔三✔"

我尝试过使用myString.match(/✔/g) || []).length;,但这返回 0 (我相信发生这种情况是因为 ✔ 是一个 dingbat 符号)。

我知道“✔”的 unicode 是 2714 ,我可以在我的表达式中使用它吗?

最佳答案

我已经解决了我的问题:我使用了“unicode 转义序列”\u 和 2714 unicode:

.match(/\u2714/g) || []).length;

该问题可能是由于字符编码问题造成的(请参阅我的问题的评论),但此解决方案似乎是一个安全的选择。

关于JavaScript/符号 : counting the number of ✔'s in a string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34468685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com