doc for wildcard (related to #1218)

This commit is contained in:
John
2024-07-13 07:03:15 +02:00
parent 9c3371c435
commit f3baf85df1
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -90,7 +90,8 @@
# - "|" allows defining alternatives, e.g. "a|b" matches "but" as well as "all".
# - "^" matches the beginning of the input, e.g. "^al" matches "al" but not "hal".
# - "$" matches the end of the input, e.g. "al$" matches "hal" but not "all".
# - "*" matches a single arbitrary length wildcard part in the middle, e.g. "^a*l$" matches "all" but not "always".
# - "*" matches a single arbitrary length wildcard part in the middle (can only be used once per filter/alternative),
# e.g. "^a*l$" matches "all" but not "always".
# include only messages having data sent at least once (only checked for passive or read messages, not for active write)
# when set to 1. If set to >1, then all messages passing the other filter criteria (including active read messages) will
+2 -1
View File
@@ -84,7 +84,8 @@
# - "|" allows defining alternatives, e.g. "a|b" matches "but" as well as "all".
# - "^" matches the beginning of the input, e.g. "^al" matches "al" but not "hal".
# - "$" matches the end of the input, e.g. "al$" matches "hal" but not "all".
# - "*" matches a single arbitrary length wildcard part in the middle, e.g. "^a*l$" matches "all" but not "always".
# - "*" matches a single arbitrary length wildcard part in the middle (can only be used once per filter/alternative),
# e.g. "^a*l$" matches "all" but not "always".
# include only messages having data sent at least once (only checked for passive or read messages, not for active write)
# when set to 1. If set to >1, then all messages passing the other filter criteria (including active read messages) will