In an Oracle database I have a string such as 12.13 this is a test. Using regexp_substr I'm trying to extract just 13. That is the number after the dot and before the space. I've tried various combinations and (string, '\.[0-9]{1,}') comes closest but I still get .13. Is there any way to just return 13?
The data also includes items like 1.1. At most the numbers will go 99.99.
All possible number formats are: #.#, #.##,##.#,##.##