This commit is contained in:
erik-krogh 2023-05-25 13:56:29 +02:00
Родитель 765076bcba
Коммит 9f5bf8fb22
Не найден ключ, соответствующий данной подписи
4 изменённых файлов: 4 добавлений и 8 удалений

Просмотреть файл

@ -11,8 +11,7 @@
Consider this regular expression:
</p>
<sample language="java">
^_(__|.)+_$
</sample>
^_(__|.)+_$</sample>
<p>
Its sub-expression <code>"(__|.)+?"</code> can match the string <code>"__"</code> either by the
first alternative <code>"__"</code> to the left of the <code>"|"</code> operator, or by two

Просмотреть файл

@ -11,8 +11,7 @@
Consider this regular expression:
</p>
<sample language="javascript">
/^_(__|.)+_$/
</sample>
/^_(__|.)+_$/</sample>
<p>
Its sub-expression <code>"(__|.)+?"</code> can match the string <code>"__"</code> either by the
first alternative <code>"__"</code> to the left of the <code>"|"</code> operator, or by two

Просмотреть файл

@ -11,8 +11,7 @@
Consider this regular expression:
</p>
<sample language="python">
^_(__|.)+_$
</sample>
^_(__|.)+_$</sample>
<p>
Its sub-expression <code>"(__|.)+?"</code> can match the string <code>"__"</code> either by the
first alternative <code>"__"</code> to the left of the <code>"|"</code> operator, or by two

Просмотреть файл

@ -4,8 +4,7 @@
<example>
<p>Consider this regular expression:</p>
<sample language="ruby">
/^_(__|.)+_$/
</sample>
/^_(__|.)+_$/</sample>
<p>
Its sub-expression <code>"(__|.)+?"</code> can match the string
<code>"__"</code> either by the first alternative <code>"__"</code> to the