Check irregular letters one by one
Hi, I need a pattern for match or test function to check letters from a string.
I need to check letter one by one and if a letter is irregular returns false, for example :
- var Str = "Hell?o W<orld>";
this string has some irregular letters and these are "?<>"
place of irregular letters can be change...
thank you