How to filter multiple words in Android Studio logcat
You should use a grouping construct: (Encoder|Decoder) Actually, you can just use Encoder|Decoder If you use [Encoder|Decoder], the character class is created that matches any single character E, n, c… |, D… or r. See Character Classes or Character Sets: With a “character class”, also called “character set”, you can tell the regex engine to … Read more