BCdev
(Baptiste)
1
Hello everyone,
Just one question for all. Can we remove quote (") ?
When I use assign activity like that :
Assign : String = string.replace(", “”)
It doesn’t works because UiPath wait another " to close the first one.
I don’t know if UiPath can handle ASCII code or nothing else to avoid to put ".
Anyone knows a method ? Thank you !
Deepak94
(Deepak Kolge)
2
Hi @BCdev,
Try using it as below.
Assign : String=String.replace(“”“,”“)
it is " " “,””
Hope this will work for you.
Thanks!
Hi @BCdev
Try to use this kind of format to eliminate the quote.
string.Replace(""""," ")
cheers 
Happy learning 
BCdev
(Baptiste)
4
Thank you @pattyricarte & @Deepak94 !
You’re fast 
Regards.