vote up 1 vote down star
1

I'm using javascript to set the value of an input with text that may contain html specific chars such a &   etc. So, I'm trying to find one regex that will match these values and replace them with the appropriate value ("&", " ") respectively, only I can't figure out the regex to do it. Here's what I'm trying to do. Make an object the contains the matches and reference to the replacement value:

var specialChars = {
  " " : " ",
  "&"  : "&",
  ">"   : ">",
  "&lt;"   : "<"
}

Then, I want to match my string

var stringToMatch = "This string has special chars &amp; and &nbsp;"

I tried something like

stringToMatch.replace(/(&nbsp;|&)/g,specialChars["$1"});

but it doesn't work. I don't really understand how to capture the special tag and replace it. Any help is greatly appreciated.

flag

76% accept rate
Perhaps "&amp;nbsp;" will show your &nbsp;? – lance Aug 4 at 19:43
Why not use escaping? w3schools.com/jsref/jsref_escape.asp – Joel Potter Aug 4 at 19:46
escape would turn &amp; into %26amp%3B. Definitely not what I"m looking for – brad Aug 4 at 20:36

3 Answers

vote up 5 vote down check

I think you can use the functions from a question on a slightly different subject (http://stackoverflow.com/questions/286921).

Jason Bunting's answer has some nice ideas + the necessary explanation, here is his solution with some modifications to get you started (if you find this helpful, upvote his original answer as well, as this is his code, essentially).

var replaceHtmlEntites = (function() {
  var translate_re = /&(nbsp|amp|quot|lt|gt);/g;
  var translate = {
    "nbsp": " ", 
    "amp" : "&", 
    "quot": "\"",
    "lt"  : "<", 
    "gt"  : ">"
  };
  return function(s) {
    return ( s.replace(translate_re, function(match, entity) { 
      return translate[entity]; 
    }) );
  }
})();

callable as

var stringToMatch = "This string has special chars &amp; and &amp;nbsp;";
var stringOutput  = replaceHtmlEntites(stringToMatch);

Numbered entites are even easier, you can replace them much more generically using a little math and String.fromCharCode().

link|flag
Side note: Stack Overflow's code sections are broken. Apparently I can either have '&amp;&nbsp;' or ' ', but not '&nbsp;'. – Tomalak Aug 4 at 20:03
So apparently I don't understand regex's. Your code looked pretty good to me, but the value (s) being passed into the function actually contains the whole &nbsp; Not just the nbsp. I thought the brackets were supposed to match just the inside chars? Anyway, modding that translate object to contain the whole "&nbsp;", "&amp;" etc. worked. otherwise it just returned undefined. Thanks – brad Aug 4 at 20:34
The answer has been modified a little bit to accommodate for this. I guess you've tried with the original code. The above works for me, I've just tried it out (again). – Tomalak Aug 5 at 6:24
Really? No I copied your code and ran it through the debugger, the value for me being passed in (s) was the whole &nbsp;. Very odd. I'm using safari and I tested in Firefox. I'll try a few other browsers too. ANyway thanks again – brad Aug 5 at 13:39
1  
Sorry, I just noticed the changes. The extra entity attr in the return function. Thx again!! – brad Aug 5 at 13:50
show 1 more comment
vote up 1 vote down

Another way would be creating a div object

var tmp = document.createElement("div");

Then assigning the text to its innerHTML

tmp.innerHTML = mySpecialString;

And finally reading the element's text content

var output = tmp.textContent || tmp.innerText //for IE compatibility

And there you go...

link|flag
I'm using the text to set a value of an input (w/ jquery) so $(input).val(someText) it's the someText that needs the replacement – brad Aug 4 at 20:47
Okay I got the point. When you do what I have suggested, all the values are converted by the HTML engine of the browser since the "textContent" or "innerText" property contains the "resultant text". – BYK Aug 4 at 21:12
vote up 0 vote down

You can use a function based replacement to do what you want to do.

var myString = '&'+'nbsp;&'+'nbsp;&tab;&copy;';
myString.replace(/&\w+?;/g, function( e ) {
	switch(e) {
		case '&nbsp;': 
			return ' ';
		case '&tab;': 
			return '\t';
		case '&copy;': 
			return String.fromCharCode(169);
		default: 
			return '&'+e+';';
	}
});

However, I urge you to consider your situation. If you're receiving &nbsp; and &copy; and other HTML entities in your text values, do do you really want to remove them? Should you be converting them afterword?

Just something to keep in mind. Cheers!

link|flag

Your Answer

Get an OpenID
or

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