Percentage sign ('%') is getting interpreted as ('0') when inputting URL into address bar from Blue Prism for a SharePoint website
            Asked
            
        
        
            Active
            
        
            Viewed 127 times
        
    2 Answers
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
