3

I'm trying to remove everything in a string that does not match 'standard' characters. Heres what I have so far:

var result = myString.replace(/^(?![A-Za-z0-9]+)/g, '');

Which does not work. Can someone point to me what I'm not doing right?

4

1 回答 1

7

I think you mean this:

var result = myString.replace(/[^a-z0-9]/gi,'');
于 2013-03-03T22:57:21.240 回答