I am decoding SS7 messages on wireshark. Is it possible to filter all messages in which particular number starts from "0792xxxxxxx" ? It should not gives you a result "xxx0792xxx". Some filter like beginswith or starts with needed. asked 21 Mar '11, 22:21 parthe |
2 Answers:
You can use the "matches" operator. You will have to use something like:
answered 21 Mar '11, 23:24 SYN-bit ♦♦ |
Try: answered 21 Mar '11, 22:41 joke As i told you contains also filtered messages which has number "xxxx0792xx" (21 Mar '11, 22:52) parthe (converted your "answer" to a "comment" to follow the Q&A nature if this site, see also the FAQ) (21 Mar '11, 23:20) SYN-bit ♦♦ |
thanks for the solution. But It gives same result as Contains.
Did you use the "^" at the start of the filter? It means "match at the start of the string", so that should exclude "xxx0792xxx"