My problem is that I want to check if my String matches ASCII character set.
I tried to use Guava library in my android project. The problem is that this library has too much weight (installed app size was 41 MB and with Guava library is become 45MB).
From Guava library I only need this:
CharMatcher.ascii().matchesAllOf();
Do you have any ideas how should i check my string correctly,or is there any other light-weight libraries?
Thanks!