I have this string
"1 36,8 stc smear"
This means that the first smear was made from inpatient that had temperature 36,8
And I would like to get only the temperature
36,8
I used this
str_extract("1 36,8 stc smear", "(\\d)+(?= stc)")
But output was
8
Is it possible to get all the digits with "," to get output 36,8