式子 法子 例子
(pattern) 匹配 pattern 并获取这一匹配。所获取的匹配可以从产生的 Matches 集合得到,在VBScript 中使用 SubMatches 集合,在JScript 中则使用 $0…$9 属性。要匹配圆括号字符,使用 '(' 或 ')'。 用IMG_(....)匹配IMG_0123, IMG_3210,用<img src="/pics/NAS/IMG_$1.JPG">替换扩展匹配到的文件名,并且保留原本的文件名。

正則可視化,fun tools.

lookaround lookahead 解釋 lookbehind 解釋
negative q(?!u) 匹配後面沒有u的q (matches a “q” not followed by a “u”) (?<!a)b 匹配前面沒有a的b (matches a “b” that is not preceded by an “a”)
positive q(?=u) 匹配後面有u的q (?<=a)b 匹配前面有a的b

?, *, +這些都默認是貪婪模式,即返回匹配到的所有滿足條件的結果,Adding a ? on a quantifier (?, * or +) makes it non-greedy.

比如在把elo/probability basics這篇文章從wiki搬到blog的時候,從wikipedia抄來的公式有顯示錯誤,用下式刪掉。 \{\\displaystyle.*?\}(?=["<]) 而不是 \{\\displaystyle.*?\}(?=["<]), 其中的*要加個?才不會一路匹配到結尾。
比如下面這一串,之後忘記了可以測試一下直觀感受: alt="{\displaystyle \mu ,}"></span> <a href="/wiki/Location_parameter" title="Location parameter">location</a> (<a href="/wiki/Real_number" title="Real number">real</a>)<br><span class="mwe-math-element"><span class="mwe-math-mathml-inline mwe-math-mathml-a11y" style="display: none;"><math xmlns="http://www.w3.org/1998/Math/MathML" alttext="{\displaystyle s>0,}">


results matching ""

    No results matching ""