I have try to write any a regular exp that return a word without e but if i test it with other strings is working completely execpt this or many to my knowledge
code…
function myFunction() {
var str = "Give 100%! eboy ttthe be ghana men women";
var patt1 = /(\w+(e))|(e\w+)/g;
var result = str.replace(patt1, "");
document.getElementById("demo").innerHTML = result;
}
I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.