Need help extracting the URL values from HTML META tag using JSOUP. Here is my html -
String html = "<HTML><HEAD><...></...><META ......><META ......><META http-equiv="refresh" content="1;URL='https://xyz.com/login.html?redirect=www.google.com'"></HEAD></HTML>"
Output expected : "https://xyz.com/login.html?redirect=www.google.com"
Can anyone please tell me how to do that. Thanks