aspose file tools
The moose likes Java in General and the fly likes need help Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "need help" Watch "need help" New topic
Author

need help

Anil Kumar Saha
Ranch Hand

Joined: Apr 07, 2004
Posts: 111
Hi,

I want to delete all the comma(,) and dot(.) from a string. That is if the input is "1,236,4as4.00" I want the output to be "12364as400". Any help will be highly appreciated.


Regards,

Anil Kumar Saha
SCJP 1.4
http://www.agilej.blogspot.com/
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35241
    
    7
Something like String.replaceAll("[,\\.]\+", "") should do the trick.


Android appsImageJ pluginsJava web charts
Jesper de Jong
Java Cowboy
Bartender

Joined: Aug 16, 2005
Posts: 12921
    
    3

You can use the method String.replaceAll() for this. Note that the argument to the method is a regular expression.


Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
Anil Kumar Saha
Ranch Hand

Joined: Apr 07, 2004
Posts: 111
Ulf Dittmer/Jesper Young,

Thanks a lot for your quick help.It is working.
I need to brush up on regular expressions.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: need help
 
Similar Threads
Outgrowing our server(s)!
how can I runc++ pro in java?
Help
How do i create sub domain using JSP
how to dispaly the selected value of a dropdown list