I don´t know how to resolve a situation i have. I have a regular expression that validate a textbox input, what i need is to prevent or remove characters that not mach the regular expresion while the user is typing. my regular expression is:
^[A-Z0-9]+(\.[A-Z0-9]+|[A-Z0-9]*)*$.
it allows letters,numbers, and dots (but no more than one consecutive), but it can be change without notificacion (by system configuration)
Any idea how to solve it?
Upd: it`s a winforms application