Two Laptop Bag
The moose likes Beginning Java and the fly likes question about replace(',','') Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of Mongo DB Applied Patterns this week in the MongoDB forum
or a resume review from Five Year Itch in the Jobs Discussion forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "question about replace( Watch "question about replace( New topic
Author

question about replace(',','')

nick wall
Greenhorn

Joined: Aug 27, 2003
Posts: 5
I have searched this forum and found various solutions to my problem (involving looping over string etc.), but I am still a little confused about the replace method (This is actually with reference to page 295 of Head First Java).
I am trying to replace the commas in 1,234,567 with "blank spaces" to get 1234567. If I use:
myString.replace(',', '') I get an "empty character literal" compiler error. If I do: static char nullChar; myString.replace(',',nullChar); that places a space.
How does one assign a char myChar = "null character"?
Any comments greatly appreciated.
Joel McNary
Bartender

Joined: Aug 20, 2001
Posts: 1815
I'm not sure that you can do it with the replace method, simply because there is not concept of the "empty character". You would probably want to do it with the replaceAll method, which replaces strings -- which does have the "empty string" concept.


Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: question about replace(',','')
 
Similar Threads
Javascript RegExp expression
Replaceing Characters
Char Conversion
trim function in Javascript
How to replace apostophes?