Ответ 1
Вы можете использовать Uri-класс в Android для этого; https://developer.android.com/reference/android/net/Uri.html
Uri uri = Uri.parse("http://www.chalklit.in/post.html?chapter=V-Maths-Addition%20&%20Subtraction&post=394");
String server = uri.getAuthority();
String path = uri.getPath();
String protocol = uri.getScheme();
Set<String> args = uri.getQueryParameterNames();
Тогда вы даже можете получить определенный элемент из параметров запроса как таковой;
String chapter = uri.getQueryParameter("chapter"); //will return "V-Maths-Addition "