Ask Your Question
0

what is the wildcard character that can be used in the filter to represent unknown length of characters?

asked 2022-04-30 00:50:18 +0000

vg0188 gravatar image

what is the wildcard character that can be used in the filter to represent unknown length of characters?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-04-30 16:27:37 +0000

Chuckc gravatar image

Are you using the matches operator in a display filter? (WSUG - Comparing Values)
It supports PCRE regular expressions. regex101 or CyberChef can be used to test the regex.

. - Matches any single character

.* - Matches Zero or more of any character

.+ - Matches one or more of any character

http.host matches "web.*net" - match strings containing web thennet with zero or more characters between

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2022-04-30 00:50:18 +0000

Seen: 1,777 times

Last updated: Apr 30 '22