text = text.replace(/\.(?=[a-zA-Z0-9\[])/g, "<span style='background-color: #FF00FF'>.</span>");

I want to use javascript to highlight all full stops that is followed by letters, numbers and [. The above expression works for letters and numbers, but not bracket. Any idea what's wrong?

link|improve this question

73% accept rate
It works for me. text = '.[1]';, followed by your snippet gives '<span style='background-color: #FF00FF'>.</span>[1]' in Safari 4. – outis Apr 9 '10 at 5:43
Stupid me. Ok, thanks. – John Adawan Apr 9 '10 at 5:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.