I have series of numbers (versioning) like this:
1.6.8
1.9.7
(also with two digits in the middle)
How should I do to target only the middle numbers, the ones between dot and dot?
I tried something like that this:
\.\d+(?=\.)
and it is targeting the middle number, but also the first dot.