Answers for "regex for float"

1

regex for float

[+-]?([0-9]+([.][0-9]*)?|[.][0-9]+)
Posted by: Guest on June-26-2021
0

js string only positive float numbers

if ("10".match(/^(?!0\d)\d*(\.\d+)?$/)) {
	console.log('match')
} // expected output: 'match'

// matches
	// 10.0
	// 0.10
	// 123.456
// Does not match
	// a1
	// 00.10
Posted by: Guest on September-01-2020

Browse Popular Code Answers by Language