adrian4aes
adrian4aes

Reputation: 869

Eclipse logcat regex show only tags ending in .java

For example if I have these tags:

I want the eclipse logcat only shows messages with tags ending in ".java":

Can this be possible with logcat regex?

Upvotes: 0

Views: 108

Answers (1)

Sabuj Hassan
Sabuj Hassan

Reputation: 39355

Regex(escape \ if you need to):

.*\.java$

This means anything that ends with .java

Upvotes: 3

Related Questions