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

I want to remove a string that is between two characters and also the characters itself , lets say for example:

i want to replace all the occurrence of the string between "#?" and ";" and remove it with the characters.

From this

"this #?anystring; is  #?anystring2jk; test"

To This

"this is test"

how could i do it in java ?

share|improve this question
I removed the android tag since is has is not android-specific at all. – f1sh Sep 21 '10 at 7:21
you are right, thanks. – Jimmy Sep 22 '10 at 15:38

3 Answers

up vote 4 down vote accepted

Use regex:

myString.replaceAll("#\?.*?;", "");
share|improve this answer
Worked like a charm, Thanks ! – Jimmy Sep 21 '10 at 1:47

@computerish your answer executes with errors in Java. The modified version works.

myString.replaceAll("#\\?.*?;", "");

The reason being the ? should be escaped by 2 backslashes else the JVM compiler throws a runtime error illegal escape character. You escape ? characters using the backslash .However, the backslash character() is itself a special character, so you need to escape it as well with another backslash.

share|improve this answer
I don't understand how the answer by computerish has 2 votes. Is it fixed or what???. – A_Var Sep 21 '10 at 4:02

string.replaceAll(start+".*"+end, "")

is the easy starting point. You might have to deal with greediness of the regex operators, however.

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.