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.
即使在正则表达式生成器的帮助下,我也不知道如何制作某个正则表达式。
我需要准确地获取(包括空格)之间的字符串:</a>:和 .
</a>:
如果没有人想为此感到头疼,我可以理解。
您将使用环视来匹配此:/(?<=<\/a>: ).*(?= )/
/(?<=<\/a>: ).*(?= )/
但是,JavaScript 不支持后视,因此您必须使用匹配组:
var regex = /<\/a>: (.*?) /; var match = myString.match(regex); if (match) return match[1];