I have the following value (and similar formatting in hundreds of thousands of fields):
61.00.62.1
that I would like to use a stringr
or stringi
and (likely) a regex to turn into
61.0
0.6
2.1
I have been unsuccessfully using the stringi::stri_split_regex
command of the form
"[0-9]\\d{1,2}(\\.[0-9]\\d{1})"
Thank you.