Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://www.yahoo.com &b=128&f=norefer

I want to remove &b=128&f=norefer

String finalUrl =decodedUrl.replace("&b=128&f=norefer", "");
                page.setPageUrl(finalUrl); 

I have used this code but I want code without hardcoded &b=128&f=norefer in code

share|improve this question
1  
So what exactly do you want to have removed? Everything after first &? Or only the b and f parameters? BTW, the URL doesn't seem to be a complete one. – Grzegorz Oledzki Feb 8 '11 at 9:37
where is the ? in the url where the querystring begins ? – Shrinath Feb 8 '11 at 9:45

3 Answers

you should be using URL object of java for this : http://download.oracle.com/javase/1.4.2/docs/api/java/net/URL.html#getHost()
[search for getHost() method in it.]

share|improve this answer

Is the reason for not wanting a hardcoded string that you wish to be able to remove some other string as well? Then you could consider writing a method like:

public String removeNoise(String url, String noisePattern) {
    return url.replace(noisePattern, "");
}
share|improve this answer

You can use the following regex replacement to remove everything after the first ampersand:

"http://www.yahoo.com &b=128&f=norefer".replaceAll("&.*$", "");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.