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.
我有这样的表达[2180]:。我想匹配包括方括号和冒号在内的所有内容。
[2180]:
我尝试使用/\[/[/d+]/\]/:,但似乎不能完美运行。
/\[/[/d+]/\]/:
让我们再举一个例子:vpnagent[2284]:.
vpnagent[2284]:
上述字符串的正则表达式是什么?
您似乎混淆了斜杠(用于分隔正则表达式)和反斜杠(用于转义正则表达式元字符或特殊的正则表达式速记转义序列):
/\[\d+\]:/
是你需要的。