Rust regex library

This commit is contained in:
unknown
2022-07-13 18:42:50 +02:00
parent 0e54156b2c
commit 2015dfe984
@@ -59,7 +59,7 @@ Let's take a look at <a href="https://www.nexusmods.com/skyrimspecialedition/mod
<ul>
<li>Masterlist entry matching and the contains filter uses <code>C++</code>'s standard regex.</li>
<li>Condition evaluation uses the <code>Rust</code> regex library.</li>
<li>Condition evaluation uses the Rust <code>regex</code> library.</li>
<li>The search dialog uses <code>Qt</code>'s regex implementation.</li>
</ul>
@@ -74,7 +74,7 @@ Let's take a look at <a href="https://www.nexusmods.com/skyrimspecialedition/mod
<p>The regex in the <code>name</code> field uses <code>C++</code>'s standard regex, which doesn't support unicode.</p>
<p>The regex in the <code>condition</code> field uses the <code>Rust</code> regex library, which supports unicode by default.</p>
<p>The regex in the <code>condition</code> field uses the Rust <code>regex</code> library, which supports unicode by default.</p>
<img src="../../images/Regex_Search_Cards.png" alt="Regex_Search_Cards" width="602" height="409">