I need to create a regular expression to restrict the following characters in an input field for my Java web application,
- Ascii control characters(0 to 31)
- Extended ascii characters ranging from 169 to 255(excluding 224 and 225).
Could any one please help me to create a regular expression for the same? Thanks in advance.