i have a string like
String mydate = jan\10 ;
but when i print this string i did n't get currect string. so i want replace the char \ by any other char , like #,@ etc..
how it is possible..
|
i have a string like String mydate = jan\10 ; but when i print this string i did n't get currect string. so i want replace the char \ by any other char , like #,@ etc.. how it is possible.. |
|||||
|
|
You must to shield slash:
If you want to replace this char:
|
|||
|
|
|
|||||
|
output:
|
||||
|
|
Will replace it. The reason you need four backslashes is that the first argument is a regular expression, which expects backslashes to be escaped, and then java expects the backslashes in strings to be escaped as well, leading to the four backslashes. Alternatively you could just declare your string like
and have it print normally. |
|||||||
|