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

For example, I have an approved list of characters: "a", "b", and "c".

So if I had the string:

var string = "aaabc8abccc";

I would like the script to detect the fact that the "8" is not "a", "b", or "c" and output:

var output = "aaabc<span style='color:red;'>8</span>abccc";

How can I do this?

share|improve this question

3 Answers

up vote 3 down vote accepted
var strn= "aaabc8abccc";
var chrs = 'abc';
strn=strn.replace(new RegExp('([^'+chrs+'])','g'),'<span style="color:red">$1</span>');
share|improve this answer
1  
I'm not gonna lie, there was some initial turbulence with the code, but it works now. – Walkerneo Mar 25 '12 at 7:09
Thanks so much!!!!!!!!!!! – supercoolville Mar 25 '12 at 7:11

Regex:

result = subject.replace(/[^abc]/ig, "<span style='color:red;'>$&</span>");
share|improve this answer
What's $& match? – qwertymk Mar 25 '12 at 7:21
1  
@qwertymk, It matches the matched string. I've always loved: gskinner.com/RegExr – Walkerneo Mar 25 '12 at 7:24

You can do it with regular expressions using string.replace(regexp/substr,newstring)

In your case it will be something like

string.replace(/^[a-z]*/,"<span>$1</span>")
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.