]> git.mxchange.org Git - friendica-addons.git/commitdiff
[advancedcontentfilter] Update documentation about backslashes
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 19 Apr 2018 03:49:15 +0000 (23:49 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 19 Apr 2018 03:49:15 +0000 (23:49 -0400)
advancedcontentfilter/doc/advancedcontentfilter.md

index f9947b8f32fb8c692411bbbb513406b522948865..41320fa3af0ed9c022fe796c0bac42b29daf48fe 100644 (file)
@@ -45,9 +45,9 @@ A post will be collapsed if at least one rule matches, but all matching rule nam
 - **booleans** - `true` and `false`.
 - **null** - `null`.
 
-A backslash (``\``) must be escaped by 4 backslashes (``\\\\``) in a string and 8 backslashes (``\\\\\\\\``) in a regex::
+A backslash (``\``) must be escaped by 2 backslashes (``\\``) in a string and 4 backslashes (``\\\\``) in a regex::
 
-`"a\\\\b" matches "/^a\\\\\\\\b$/"`
+`"a\\b" matches "/^a\\\\b$/"`
 
 Control characters (e.g. ``\n``) in expressions are replaced with whitespace. To avoid this, escape the sequence with a single backslash (e.g.  ``\\n``).