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

I have following string:

<html>
<head><meta>...</meta><head>
<body>
   <div id="foo">
     Text I want to search & replace occurrences
     of keywords such as Foo or foo while ignoring case
   </div>
</body>
</html>

What I want to end up with is:

<html>
<head><meta>...</meta><head>
<body>
   <div id="foo">
     Text I want to search & replace occurrences
     of keywords such as <b>Foo</b> or <b>foo</b> while ignoring case
   </div>
</body>
</html>

So pretty much I'd like to search for and replace foo with <b>foo</b> or <b>Foo</b>. It is important to retain the case of the string that is being replace but match it with keyword foo while ignoring the case of the matches.

Another important thing is that the replacement ignores all html tags and their content. Notice that <div id="foo"> stays like it is.

I drafted this but didn't test it yet

 text = text.replace("(?i)"+keyword+"(?!([^<]+)?>)", "<b>"+keyword+"</b>");

The problem with the above is that it doesn't remember the case of word that is being replaced and just puts in the keyword.

share|improve this question

2 Answers

up vote 1 down vote accepted
text.replaceAll("(?i)(" + keyword + ")(?!([^<]+)?>)", "<b>$1</b>")
share|improve this answer
Did you vote down on my answer just because I answered first? – adrianboimvaser Jan 22 '11 at 0:13
A backreference to the entire match is indicated as $0. If there are capturing parentheses, you can reference specifics groups as $1, $2, etc. – adrianboimvaser Jan 22 '11 at 0:21
@adrianboimvaser: No ! I didn't ! I was actually about to delete mine when I saw yours, but then I realized you wrote $0... Did you do that with my answer ? :) – Costi Ciudatu Jan 22 '11 at 0:21
@Costi Ciudatu: I'm sorry, I saw my first vote vanish. Of course not! – adrianboimvaser Jan 22 '11 at 0:23
@adrianboimvaser: I know, I was just kidding. Maybe my "answer" should've been only a comment to yours... @Mat Banik: you should accept the first answer with but with the small fix that I posted: $1 instead of $0 :) – Costi Ciudatu Jan 22 '11 at 0:32

You need to use a capturing group, and, by the way, use replaceAll

text = text.replaceAll("(?i)("+keyword+")(?!([^<]+)?>)", "<b>$0</b>");
share|improve this answer
replaceAll() takes a regular expression, while replace() just takes a literal sequence – adrianboimvaser Jan 22 '11 at 0:19

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.