Issue with filtering

unable to setup filter

so i want to setup a filter like , if the data is a string ,

so i am getting information from certain links , and some links are processed as binary data , i want to setup a filter where the binary data is ignored and only data with string is accepted , but i am not able to setup such filter in the filter option.

So please help !

i had tried using regex does not match pattern like (?:[0-9a-fA-F]{2}\s?)+(?![a-zA-Z\s]*\s[0-9a-fA-F]{2}) and (?:[0-9a-fA-F]{2}\s?)+

but still it does not work , please tell how to filter data that is not a binary data !

Thank you !

Please provide example of data with string? Perhaps you should use a string match pattern in the filter with the data with string?

2 Likes

so i am just scrapping websites and some links and getting their data by making a http request

some links seems to be downloadable files , so they give output in binary as shown below

so please tell how to ignore such binary data forms and value

This is what I mean by creating a filter to check the existence of the output.

2 Likes

Thank you sir ! Its so simple

Never thought in this way , i was in an angle of matching the data types !

2 Likes