私はこのようなものを検証したいと思います.Numeric values and or with the dot
これらは有効です:
- 1
- 1.1
- 12.12.12
- 123.123.123.12
- 1.12.123.12345.123456
これらは有効ではありません:
- .1
- 1.
- 123.123.
- 123..
私が試したこと
/^[\d*\.?\d*]+$/.test(the_number_from_form_input_field)
this.value.match(/[^\d*\.?\d*$]/)
/^[\d+(\.\d)?]+$
私が現在使用しているもの
/^[\d\.]+$/.test(the_number_from_form_input_field)
this.value.match(/[^\d\.]/)
これを .match() と .test() で動作させたい