Good News Everybody!
The new search engine is LIVE!
Please report any problems to david (at) midrange.com.
|
Don McIntyre wrote:
I am loading a DB2/400 data base table from an XML file. I was not having problems until a vendor started adding comma's in the 'total' element of the XML. Now my program errors when trying to write the amount field to a Big Decimal. The cXML consortium states the comma is optional, so I need to deal with it.
Editing a numeric value in a data file is pretty dumb.
How about extracting the value into a String, then use the replaceAll
method to replace commas with nothing.
Something like ...
String editedNumericValue = "123,456,789.01"; // get the value here
String rawNumericValue = editedNumericValue.replaceAll(",","");
Of course the best solution would be to have the vendor create the xml
file properly.
david
This mailing list archive is Copyright 1997-2026 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.