tcap.tid == 05:95:27:01 I want to filter the tcap.tid begin with 05:::** ,I use tcap.tid contains 05 to filter,ther many GSM_MAP message.I use tcap.tid matches "^05" ,filter nothing asked 04 Feb '13, 06:48 anshaohui edited 04 Feb '13, 19:33 cmaynard ♦♦ |
One Answer:
Try answered 04 Feb '13, 19:32 cmaynard ♦♦ |
it works,thanks,
how to filter tcap.tid begin with 05:95?
If an answer provides a solution to your issue, please accept it for the benefit of other users by clicking the checkmark next to the answer. Please see the FAQ for more info.
@anshaohui, try
tcap.tid matches "^\x05\x95"
@cmaynard,thanks