| Author |
how to replace colon (:) in a String
|
Kool dada
Greenhorn
Joined: Aug 30, 2007
Posts: 1
|
|
Hi Team, I have a requirement like replace the colon ( in a string. I tried with the following code: /** String str = "abc ef:ghi"; str.replaceAll(":","_"); system.out.println(str); **/ But the output i am getting the string with unchanged. output ---------- abc ef:ghi Could you please let me know why i am not able to replace the colon? Also point me to the correct code that satisfy my requirement. Thanks.
|
 |
Anand Loni
Ranch Hand
Joined: Jan 20, 2006
Posts: 150
|
|
Hi You wrote: ------------------------------------------------------------- Hi Team, I have a requirement like replace the colon ( in a string. I tried with the following code: /** String str = "abc ef:ghi"; str.replaceAll(":","_"); system.out.println(str); **/ But the output i am getting the string with unchanged. output ---------- abc ef:ghi Could you please let me know why i am not able to replace the colon? Also point me to the correct code that satisfy my requirement. Thanks. --------------------------------------------------------------- the replaceAll method will return a String which is not assigned to any variable. Because of this you are not seeing the change. Replace your code str.replaceAll(":","_"); with str = str.replaceAll(":","_"); This will work.
|
~ Anand,
SCJP 1.5
SCWCD 1.5
|
 |
Katrina Owen
Sheriff
Joined: Nov 03, 2006
Posts: 1334
|
|
"Kool Dada", Please check your private messages for an important message from me. Kind regards, Katrina Owen Saloon Bartender
|
 |
 |
|
|
subject: how to replace colon (:) in a String
|
|
|