How to match floating-point exact 1 bits and integers using match

how to match floating point exact 1 digits and integers using match

Feb.26,2021

(\ d+)\.\ d {1} [^\ d]

I think of it this way, first match the previous number, then the middle point, then only one digit, and match once non-numeric

then add a new line or something else at the end of the matched text to prevent the last item from being matched to

the first matching subitem is an integer

Menu