I was trying to check logs for my app with Android Studio. But I need to filter with either of two keywords. I’ve tried this (foo|bar) but only first filter foo is working. How can I filter properly?
(foo|bar)
foo
Android Studio Filter
2
It works if you removes parentheses and spaces.
A correct regex based on the image you posted might be:
foo|okhttp
Use regex search.
^(.*(foo|bar)).*$
Click here to cancel reply.
2
Answers
It works if you removes parentheses and spaces.
A correct regex based on the image you posted might be:
Use regex search.