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?
CodePudding user response:
Use regex search.
- check Regex.
- add your Regex expression.
^(.*(foo|bar)).*$