String url = "http://someurl/search.do?/remainingurl"
I would like to scrape the above string from the first character upto search.do?
Meaning, the resulting String would look like so:
String scrapedUrl = "http://someurl/search.do?"
Is there a String operation in Java to achieve the above action ?
Thanks, Sony