Home > front end >  How to filter with multiple keyword in Android studio?
How to filter with multiple keyword in Android studio?

Time:11-04

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?

enter image description here

CodePudding user response:

Use regex search.

  1. check Regex.
  2. add your Regex expression.
^(.*(foo|bar)).*$

enter image description here

  • Related