I have following URL:
https://play.google.com/store/apps/details?id=eu.bandainamcoent.verylittlenightmares&hl=en";
I want to extract this value: eu.bandainamcoent.verylittlenightmares
URI uri = new URI(URL);
uri.getQuery();
I'll get this: id=eu.bandainamcoent.verylittlenightmares&hl=en
How to cut id=
and &hl=en
?
And &hl=en
may not exist and can be different, like &hl=de
etc.