I am searching for a "regular expression"/pattern for MaskFormatter where the only the first letter is Upper Case and the all other letters are low case
mf = new MaskFormatter("U([L]){1,}");
This code above wont work because it does not support regular expr. Is there another way? How can I say that the low case letters can be 1 or infinitely.