forked from friendica/friendica-addons
Merge pull request #443 from rebeka-catalina/rct/d/NSFW_README_examples
Grouping parentheses instead of capturing parentheses
This commit is contained in:
commit
639a32fe19
20
nsfw/README
20
nsfw/README
|
@ -47,7 +47,25 @@ done with a single regex, which matches all of them:
|
||||||
Another use case could be, that you are simply not
|
Another use case could be, that you are simply not
|
||||||
interested in postings about christmas.
|
interested in postings about christmas.
|
||||||
|
|
||||||
/christmas([-_ ]?(tree|time|eve|pudding))?/
|
/christmas(?:[-_ ]?(?:tree|time|eve|pudding))?/
|
||||||
|
|
||||||
|
|
||||||
|
ATTENTION:
|
||||||
|
|
||||||
|
It is absolutely important, that you use grouping
|
||||||
|
parentheses instead of capturing parentheses!!
|
||||||
|
|
||||||
|
Grouping parentheses are:
|
||||||
|
|
||||||
|
(?: )
|
||||||
|
|
||||||
|
If you use capturing parentheses, which are
|
||||||
|
|
||||||
|
( )
|
||||||
|
|
||||||
|
it will produce errors and the regex won't work and
|
||||||
|
at least your targets will not get collapsed.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
3)
|
3)
|
||||||
|
|
Loading…
Reference in a new issue