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

I'm trying use regular expression to convert special characters in an url. Here's my sample code :

String formatUrl = "index.php?title=Test/enu/test/Tips_%26_Tricks/Tips_and_Tricks";
formatUrl = formatUrl.replaceAll("[^a-zA-Z0-9]" , "-");

What I'm trying to do is to convert the special characters in the url such as ?_%. to "-" excluding "/".

The regular expression in my code converts everything resulting the output as

index-php-title-Test-enu-test-Tips--26-Tricks-Tips-and-Tricks

But I want it to be

index-php-title-Test/enu/test/Tips--26-Tricks/Tips-and-Tricks

Any pointers will be appreciated.

share|improve this question
Your question shows that you did not understand the way a regular expression works ... I recommend reading a regular expression tutorial, to help you understanding why the answer works. – Paŭlo Ebermann Aug 13 '11 at 19:44

3 Answers

up vote 2 down vote accepted
formatUrl = formatUrl.replaceAll("[^a-zA-Z0-9/]" , "-");
share|improve this answer
exactly what I was looking for. Thanks a lot. – Shamik Aug 12 '11 at 23:06

You could just add your / into the regex:

"[^a-zA-Z0-9/]"
share|improve this answer
I don't think he's wanting to uri-encode. – Jonathan M Aug 12 '11 at 22:31
@Jonathon That's true, otherwise he wouldn't be wanting to encode ?and .` until the uri-components`. But, I'm still curious as to what he is using this for and why he's using an irreversible process. – Paulpro Aug 12 '11 at 22:38
@PaulPRO ..thanks for your reply.Pls find my answer to hoipolloi. It'll explain why I'm not looking java encode/decode. – Shamik Aug 12 '11 at 23:10

I'm wondering what you're trying to achieve. Why not just decode the URL?

final String url = "index.php?title=Test/enu/test/Tips_%26_Tricks/Tips_and_Tricks";
final String decoded = java.net.URLDecoder.decode(url, "UTF-8");
System.out.println(decoded); // Prints index.php?title=Test/enu/test/Tips_&_Tricks/Tips_and_Tricks
share|improve this answer
thanks for your reply.My requirement is not about decoding an url, rather converting the control characters. This gets translated to a S3 key, which creates issues with ?= etc.I need to preserve the "/" to have it translate to a folder based structure in S3. Thanks for your help though. – Shamik Aug 12 '11 at 23:09
1  
@Shamik: Information like this should be in the question, not in a comment two pages down. – Tim Pietzcker Aug 13 '11 at 5:34
@Tim: Not necessarily. In the question, he stated exactly what he was trying to achieve. Why he was trying to achieve it really doesn't matter. I think hoipolloi was trying to out-guess the OP. – Jonathan M Aug 15 '11 at 15:15

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.