How to decode encoded latin charachters

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


Hi @pravin_bindage

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:
grafik
Uri.UnescapeDataString(YourStringVar)

1 Like

Thanks guys for helping me.I resolved that issue with Encode or Decode URL activities present in marketplace.

Hi @pravin_bindage

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

1 Like

ok i will try this one also

1 Like