Hey everone,
I've a problem with a Regex in JS. Basically I want a Regex accepting clause
without / \ " '
Therefore I programmed a short test:
This function always returns false. But why?Code:function CheckWetherStringIsWell(string){ var Suche = /[^\\/"']{1,}/; return Suche.test(string); }
Thank you for any help in advance.
Behaelter


Reply With Quote
Bookmarks