I would really like to use \w but it also matches underscores so I'm going with [A-Za-z] which feels unnecessarily verbose and America centric. Is there a better way to do this? Something like [\w^_] (I doubt I got that syntax right)?
|
You could use |
|||||
|
|
|
Perhaps you mean |
|||||||||||
|
|
Just use |
|||
|
|
|
Matching international (i.e non-ASCII) characters is kind of tough, and could depend on a lot of things. Check out this example:
For me this results in
If you remove the Looking at this very relevant question, it looks like you probably want to Of course, if you're using straight ASCII characters than any of the aforementioned regular expressions will work. |
|||||
|
|
A few options:
I recommend using either the case-insensitive, or the true way Note:
|
|||||
|
|
you're looking for internationalization in your regex? then you'll need to do something like this guy did: http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters explicitly match on all of the moon language letters :) |
|||
[A-Za-z]isn't America-centric, it's ASCII-centric. – CanSpice Sep 20 '10 at 19:09[[:alpha:]]– vol7ron Sep 20 '10 at 23:52