I have the following filepath
var imagepath="C:\Documents and Settings\Mahesh\Desktop\images\advts.png"
how can i replace \ with \ so so that it prints
var imagepath="C:\\Documents and Settings\\Mahesh\\Desktop\\images\\advts.png"
|
I have the following filepath
how can i replace \ with \ so so that it prints
|
||||
|
|
You need to use the replace() method whilst escaping the
If |
|||||||||||
|
|
It's a string literal.. By the time it's assigned to imagepath, the escape sequences are already parsed and processed, and the backslashes no longer exist in the string. You just have to have them in the string in the first place. To demonstrate what I mean:
There's no way to fix the issue at that stage. |
|||
|
|
|
You can use the string Example:
Upate As reko_t said, once a path is assigned to
The only way to do it, is to replace |
|||||||||
|
|
Just add after var imagepath initialisation
|
|||
|
|