Updated FAQ

This commit is contained in:
M66B 2024-04-29 16:43:45 +02:00
parent ad53d3d1ea
commit 168484ddb5
2 changed files with 6 additions and 0 deletions

4
FAQ.md
View File

@ -2755,6 +2755,10 @@ Note that a regular expression supports an *or* operator, so if you want to matc
Note that [dot all mode](https://developer.android.com/reference/java/util/regex/Pattern#DOTALL) is enabled
to be able to match [unfolded headers](https://tools.ietf.org/html/rfc2822#section-3.2.3).
<br />
**Expressions**
Since version 1.2174 it is possible to use expression conditions, which is [experimental](#faq125) for now.
Please [see here](https://ezylang.github.io/EvalEx/references/references.html) about which constants, operators and functions are available.

View File

@ -1498,6 +1498,8 @@ X-Google-Original-From: Somebody &lt;somebody+extra@example.org&gt;</code></pre>
<p>Note that a regular expression supports an <em>or</em> operator, so if you want to match multiple senders, you can do this:</p>
<p><code>.*alice@example\.org.*|.*bob@example\.org.*|.*carol@example\.org.*</code></p>
<p>Note that <a href="https://developer.android.com/reference/java/util/regex/Pattern#DOTALL">dot all mode</a> is enabled to be able to match <a href="https://tools.ietf.org/html/rfc2822#section-3.2.3">unfolded headers</a>.</p>
<p><br /></p>
<p><strong>Expressions</strong></p>
<p>Since version 1.2174 it is possible to use expression conditions, which is <a href="#faq125">experimental</a> for now.</p>
<p>Please <a href="https://ezylang.github.io/EvalEx/references/references.html">see here</a> about which constants, operators and functions are available.</p>
<p>The following extra variables are available:</p>