I am trying to convert/only allowing the Mask defined value in the input.
lets say - uppercase. Mask code 'A' regEx : [A-Z]
<input type="text" class="form-control" mask="AAAA">
expecting only [A-Z] uppercase character with range is 4 (ABCD). But the above-mentioned code is neither converting to uppercase nor restricting to type lowercase. Any suggestions will be appreciated. Thanks
Do you mean using the pattern attribute? This will restrict it to A-Z, the browser will say the pattern is not correct after submitting.