How can I specify a quantifier with RegEx ?
Something like:
<SfMaskedTextBox @bind-Value="viewModel.Prop" id="Prop" Mask="[A>]*"/>
I don't want to add many and many "A" char for the length of the field, I need something like 0 or more.
Than I use maxlength attribute to limit the size.