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.
我如何找到这些?
如何使用正则表达式查找具有 '[quote#]' 的字符?
我建议你退后一步,花 30 分钟左右的时间阅读正则表达式。这是它们的一个相当简单的应用。
在 JavaScript 中,你可以这样做:
var match, value; match = /\[quote#([^\]]+)\]/.exec(yourString); value = match && match[1];