想要写个js中的正则,pattern中:
var titleP = "<p\s+?class=""mid_tit"">(?<title>.+?)</p>";
包含双引号,不知道如何表示
是”"
还是\"
js regexp pattern double quotation marks
Regex for quoted string with escaping quotes – Stack Overflow
好像是\"
Pattern Matching with Regular Expressions (JavaScript: The Definitive Guide, 4th Edition)
【总结】
js中RegEx中Pattern中的双引号,貌似是用:
\"
去表示。
转载请注明:在路上 » 【已解决】js中RegEx中Pattern中的双引号如何表示