Reputation: 869
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
Reputation: 39355
Regex(escape \
if you need to):
.*\.java$
This means anything that ends with .java
Upvotes: 3