I'm adding an intent filter to my android application and I want it to catch requests that go http://www.somedomain.com/[numericValue] . I only want to catch it if the path is numeric, but if it has text, I don't care about it.
I tried the pathPattern of [0123456789]*, but that didn't work. Is this possible to do?