我使用表达式来检测字符串中重复的一个字符。
if (str.replace(/[^@]/g, '').length > 1) {...}
现在,我希望检测到重复的多个字符。
对于示例,让我们尝试检测 @ 或 # 的重复项:
Wordwithone@here - match
Word@withduplicate@here - not
Word@withoneandone#here - match
正则表达式是否可以从字符集中检测重复字符?(@# 如示例)
我使用表达式来检测字符串中重复的一个字符。
if (str.replace(/[^@]/g, '').length > 1) {...}
现在,我希望检测到重复的多个字符。
对于示例,让我们尝试检测 @ 或 # 的重复项:
Wordwithone@here - match
Word@withduplicate@here - not
Word@withoneandone#here - match
正则表达式是否可以从字符集中检测重复字符?(@# 如示例)