I would like to ask for some help regarding a custom Textbox Mask.
I need to make sure that the values entered in a few textboxes are numbers in this format:
.0 or .00 or 0.0, or 0.00
I think a regular expression can be used, as a matter of fact I used one when the values are saved from a c# program I wrote and that reg exp looks like:
"^(\\d+)?(\\.\\d*)?$"
Can I use that same Reg Exp in report portal, or what the syntax would be in this case?
Are you talking about Textbox Mask for Data Entry form? It is not using Regular Expression but a third party library called Masked Input (http://jsfromhell.com/forms/masked-input).