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.
我目前使用正则表达式
\\\[(.*)\\\]
因此,如果我尝试匹配[]它将起作用。但是我想要的是,它至少需要一个字符[,]以匹配我的正则表达式,但是如何?
[]
[
]
谢谢!
在匹配 (.*) 之前。在 [^]] 上进行匹配以匹配结束 ] 以外的内容。