HI Guys,
I am looking to Parse a long decimal number from a String using REGEX.
File attached below however, sample string looks like this
"<SpotWholesale xmlns="RateCompositionInfo"><Value>0.91409999999999991</Value><State>Defaulted</State><CalculationMethod xsi:nil="true"/></SpotWholesale>
The piece I want parsed is after first <Value> , the only number in the string. So I can identify this number easily in Regex however, parsing the full decimal number is troublesome. It is rounding the number and giving me a whole number
Not all instances will there be a "0" before the decimal point
I want the full number extracted - HELP !