I want that the text field only accept numeric values and spaces. What is regular expression for this? I was trying with \\d+$ Thanks
\\d+$
^ for the begining of string. [\d ]* for any combination of this symbols. $ for end of string.
^
[\d ]*
$
^[\d ]*$