1

Percentage sign ('%') is getting interpreted as ('0') when inputting URL into address bar from Blue Prism for a SharePoint website

John Daly
  • 201
  • 1
  • 3
  • 8

2 Answers2

3

Issue is to do with the % symbol being interpreted as a command. You need to use curly brackets for it to be used successfully.

Something like this should do it

Replace(Replace("https://health.sharepoint.com/sites/in/Standard/Forms/My%20Claims.aspx","%","{%}"),")","{%}")

Eoin2211
  • 911
  • 2
  • 19
  • 39
0

While Eoin2111's answer is correct, generally speaking when editing URL, you should make sure to encode it (remove spaces, special characters etc.). One of the ways to encode URL is HttpUtility.UrlEncode(). The usage of this and some other useful methods is very well described in here.

Osuchov
  • 31
  • 2