I'm looking to have an input which can take a frequency in MHz which has multiple decimal separators.
i.e.
14.010.56 MHz
Currently I have the input as
<input type="number" step="any" class="form-control" id="freq" placeholder="Frequency MHz">
but this is only allowing one decimal point to be used as if it were a 'normal' float. Can this be done?


14 thousand and ten point 56, or literally14 point 10 point 56? if the first option, then surely it should be14,010.56with a comma. If the second, then this isn't a "number" in the standard sense so cannot be input as such. You would probably need to a normal textbox and validate if with a regular expression instead.