× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.




    Hi Don,

    See my article "Resolving NumberFormat's parsing issues" at:

http://www.ibm.com/developerworks/java/library/j-numberformat/index.html


                                                         Joe Sam

Joe Sam Shirah -        http://www.conceptgo.com
conceptGO       -        Consulting/Development/Outsourcing
Java Filter Forum:       http://www.ibm.com/developerworks/java/
Just the JDBC FAQs: http://www.jguru.com/faq/JDBC
Going International?    http://www.jguru.com/faq/I18N
Que Java400?            http://www.jguru.com/faq/Java400


----- Original Message ----- 
From: "Don McIntyre" <dnmcin@xxxxxxxxx>
To: "Java Programming on and around the iSeries / AS400"
<java400-l@xxxxxxxxxxxx>
Sent: Wednesday, December 20, 2006 5:59 PM
Subject: Re: Converting a string to BigDecimal w/comma


Thanks for your response David,

I tried replace() because I don't believe replaceAll() is available at my
J2EE level.  I'm on OS/400 5.2 using Websphere 5.1. I believe I'm at J2EE
level 1.3.

The problem with replace() is it seems to be expecting character
arguments.
...strTotal.replace("," "");  does not work, nor does
...strTotal.replace(',' '');

----- Original Message ----- 
From: "David Gibbs" <david@xxxxxxxxxxxx>
Newsgroups: midrange.java400-l
To: <java400-l@xxxxxxxxxxxx>
Sent: Wednesday, December 20, 2006 4:28 PM
Subject: Re: Converting a string to BigDecimal w/comma


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

-- 
Check out the System i Search Engine: http://search.midrange.com
-- 
This is the Java Programming on and around the iSeries / AS400
(JAVA400-L)
mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/java400-l.


-- 
This is the Java Programming on and around the iSeries / AS400 (JAVA400-L)
mailing list
To post a message email: JAVA400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/java400-l
or email: JAVA400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/java400-l.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.