vote up 0 vote down star

I don't know enough to change the following so that it only puts <strong> around the first found string matching the term:

highlight: function(value, term) {
    return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\]){1}/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
}

This is from the jQuery autocomplete plugin: http://docs.jquery.com/Plugins/Autocomplete or http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/

By default if you type "a" in the field, the the following results would look like "Apple Ate Ants" and I only want "Apple Ate Ants".

flag

70% accept rate

1 Answer

vote up 1 vote down check

Try changing the last "gi" to "i" (the "g" tells it to replace all matches).

link|flag
Thxs, I knew it was simple, just not up on my regex. – Darryl Hein Feb 10 at 7:25

Your Answer

Get an OpenID
or

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