Skip to content

Commit d7ed692

Browse files
committed
Deploying to gh-pages from @ 089014e 🚀
1 parent 777d507 commit d7ed692

File tree

5 files changed

+3
-2
lines changed

5 files changed

+3
-2
lines changed

.doctrees/environment.pickle

796 Bytes
Binary file not shown.

_sources/tutorials/programming-language/main/05-00-experimental-features/05-02-regular-expression-literals.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ The following trailing characters can be used:
3434
* *m*, the "start of line" and "end of line" constructs match immediately following or immediately before any newline in the string, respectively, as well as at the very start and end.
3535
* *s*, a dot metacharater *.* in the pattern matches all characters, including newlines. Without it, newlines are excluded.
3636
* *x*, whitespace data characters in the pattern are totally ignored except when escaped or inside a character class.
37-
37+
* *o*, request JIT compilation of a regular expression. It allows to execute this regex much faster at the cost of extra time taken to compile it. This option is most benificial, when the same compiled pattern is used for matching several times.

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tutorials/programming-language/main/05-00-experimental-features/05-02-regular-expression-literals.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -555,6 +555,7 @@ <h1><span class="section-number">5.2. </span>Regular Expression Literals<a class
555555
<li><p><em>m</em>, the “start of line” and “end of line” constructs match immediately following or immediately before any newline in the string, respectively, as well as at the very start and end.</p></li>
556556
<li><p><em>s</em>, a dot metacharater <em>.</em> in the pattern matches all characters, including newlines. Without it, newlines are excluded.</p></li>
557557
<li><p><em>x</em>, whitespace data characters in the pattern are totally ignored except when escaped or inside a character class.</p></li>
558+
<li><p><em>o</em>, request JIT compilation of a regular expression. It allows to execute this regex much faster at the cost of extra time taken to compile it. This option is most benificial, when the same compiled pattern is used for matching several times.</p></li>
558559
</ul>
559560
</section>
560561

0 commit comments

Comments
 (0)