Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在正则表达式中转义哈希字符然后用大括号量化的正确方法是什么?我想检测在给定次数内重复的哈希字符序列。我想要类似的东西:
/#{1, 6}/
没有插值。我不能完全关闭正则表达式的插值,因为我在正则表达式的其他部分使用它。
使用反斜杠\作为转义字符,例如
\
/\#{1, 6}/