I have a field contains characters and numbers in different format like
f v/45.23698,sdfsdf
25.369xzczxc xcvxv
erwer ewrwr 2.36
I want to extract the numbers part with decimal (any number of decimals) omitting any characters in any case and any symbols ! @ # $ % ^ & * ( ) - _ = + / * \ | ? : "
45.23698
25.369
2.36
if there is any errors like
df df , 23.45.67 dfg fdg
I want to return 23.45 only (ignoring the others) or 23.4567 (ignoring the second decimal point) it doesn't matter at all .. the two solutions are acceptable
23.45
23.45678
both are acceptable