Skip to content
Advertisement

JavaScript replace special HTML (&character; format) character in a String

I’m trying to replace the square root symbol which is written in html as “√” (√). I used the following line to replace it with a space but it does not change the String at all.

JavaScript
JavaScript

What am I doing wrong here?

Advertisement

Answer

This answer is valid if you are accessing the innerText or innerHTML atribute of an Element.

JavaScript
JavaScript

As you can see √ gets evaluated and it’s value is then instead of that. The javascript replace method cannot understand that is &radic so you can just replace .

Also there is no need to use regex, you can just do the same with "√"

Advertisement