when i trying to copy & paste string which has some Latin characters in it writes some encoded characters.is there any way to avoid it
Hi @pravin_bindage ,
Could you let us know more details of where you are trying to type the latin characters ? Is it in a Notepad or is it in an application portal ?
i’m copying sharepioint folder path from sharepoint and writing it in excel
May I know how are you trying to copy ?
is it from web ? or from the file explorer after syncing as one drive?
cheers
from web i’m copying path
we can unescape by:
Uri.UnescapeDataString(YourStringVar)
Thanks guys for helping me.I resolved that issue with Encode or Decode URL activities present in marketplace.
You need not use a marketplace separate activity you can directly use this in assign and it should work
system.web.HttpUtility.UrlDecode("Your String")
system.web.HttpUtility.UrlEncode("Your String")
cheers
ok i will try this one also