I'm using javascript replace function, but it doesn't seem to work with the apex:
myText = "This is an apex ' and this is another apex ' ";
myText.replace(/[^A-Za-z0-9]/,''));
This should skip the apex ('), but it doesn't!!
Any idea how to resolve this?
Thanks!