I would like to replace all occurences of strings like:

"{something1}
"{someother2}
"{thing3}

but how to deal with group that contains string, not chars?

-- edit:

e.g. given String:

sometext "{something1}hello

I would like to have

sometext hello

or better, but its only replaceAll parameter

sometext "hello
link|improve this question

73% accept rate
3  
What do you mean by "string, not chars"? – Tichodroma Aug 25 '11 at 10:32
i know how to use patterns like this: String pattern="[abc]" - this group contains chars. But I would like to make group of strings, not chars – Mathew Aug 25 '11 at 10:37
I don't quite understand what you want to achive by this. What kind of Strings do you want to match? – Tichodroma Aug 25 '11 at 10:38
three strings I mentioned – Mathew Aug 25 '11 at 10:40
feedback

3 Answers

up vote 3 down vote accepted

I guess you can use replaceAll:

String b = a.replaceAll("\\{.*?\\}", "sometext ");

This will replace all characters surrounded by curly braces with the replacement string.

link|improve this answer
thank you for advice. I have completely forgot that String are immutable. – Mathew Aug 25 '11 at 10:49
feedback

Just build a regular expression using the | operator inside a group.

link|improve this answer
nor this: String pattern = "\"(\\{String\\}|\\{Long\\}|\\{Boolean\\}|\\{Number\\})"; nor this: String pattern = "\"({String}|{Long}|{Boolean}|{Number})"; have worked – Mathew Aug 25 '11 at 10:44
feedback

You could use the or '|' operator to match full strings -

subject.replace(/something1|someother2|thing3/g, ","); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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