I have a good RegExp which does not allow numbers at all:
/^[\D]*$/
Now I just need that it also will not be able to prevent special chars like:
!@#$%^&*()_+-/."'
<>\|±§`
and etc (if there more special chars which I don't know - I will be glad to block them too).
This does work - but it's probably won't cover all cases:
/^[^\d^!^@^#^$^%^&^*^(^)^[^\]^{^}^;^:^|^,^<^>^.^?^/^\\^~^`^±^§]*$/