Is there a built-in Delphi function which would convert a string such as '3,232.00' to float? StrToFloat raises an exception because of the comma. Or is the only way to strip out the comma first and then do StrToFloat?
Thanks.
|
Is there a built-in Delphi function which would convert a string such as '3,232.00' to float? StrToFloat raises an exception because of the comma. Or is the only way to strip out the comma first and then do StrToFloat? Thanks.
| |||||
feedback
|
|
Do you exactly know, that '.' is decimal separator and ',' is thousand separator (always)? If so, then you should fill the TFormatSettings record and pass it to StrToFloat.
| |||
feedback
|
|
below is what i use. there might be more efficient ways, but this works for me. in short, no, i don't know of any built-in delphi function that will convert a string-float containing commas to a float
| |||||||
feedback
|
|
Try: In C# / VB.NET I use would use something like I know of no way to do the conversion without stripping out the extra characters. In fact, I have a special function in my library that strips out commas and currency symbols. So a actually call | ||||
|
feedback
|
| ||||
|
feedback
|
|
I had the same problem when my Users need to enter 'scientific' values such as "1,234.06mV". Here there is a comma, a multiplier (m=x0.001) and a unit (V). I created a 'wide' format converter routine to handle these situtations. Brian | |||
|
feedback
|
|
Add line lFinalValue := pText; before GetLocaleFormatSettings( LOCALE_SYSTEM_DEFAULT, lformatSettings ); to avoid problem with non-decimal numbers | |||
|
feedback
|