I would like to "clear" a JFormattedTextField programmatically but if I simply call txtAny.setText("") it is doesn't work cause textfield's regex pattern in my case:

private final String FORMATTER_STRING_FLOAT =
 "[\\p{Digit}\\p{Cntrl}]{1,32}(\\.[\\p{Digit}\\p{Cntrl}]{0,2})?";
 
that requires at least one digit.

So my question is: how can I obtain a regex pattern of a JFormattedTextField for at least further manual partial processing?

link|improve this question
See also stackoverflow.com/questions/4148336/… which suggests that (as of Java 5, at least) there are limitations on clearing JFormattedTextField – DNA Feb 23 at 11:27
See also Why is JFormattedTextField Evil? – DNA Feb 23 at 11:29
should be simple and possible, there isn't reason be confused thread linked by @DNA, depends of your code in the SSCCE form – mKorbel Feb 23 at 11:43
feedback

1 Answer

Call setText(anyValidString) rather than setText("")

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.