Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
i having a string variable
var text = "hello hw r u";
And i need to replace 'h' to '*' and 'l' to '-'
hw to do that..
text = text.replace(/h/g, "*").replace(/l/g, "-");
In answer to you comment below
* is a special character in a Reqular Expression pattern, you need to escape it using a backslash (\) character. So it would be
*
\
replace(/\*/g, 'o')
See this quick guide on JavaScript Regular Expressions
Add a comment
var string = "hello hw r u"; string = string.replace(/(h)|(l)/g,function(str,p1,p2) { if(p1) return '*'; if(p2) return '-'; }); alert(string);
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.