Hallo everybody,
Can someone help me with some regexs for testing :
- in a textbox , i need to test only string carachters , not numbers,digits, spaces;
- in a textbox , i want to text only numbers, not strings, char..other.
Please..
Pattern patternForInfo = Pattern.compile("[a-zA-Z]", Pattern.CASE_INSENSITIVE);
Pattern patternForNumere = Pattern.compile("^[A-Z]{3,}", Pattern.CASE_INSENSITIVE);