Conversation
supportWe use a link generator that escapes spaces in the URL querystring using the ‘+’ character. We have no control over how the link is encoded. Ideally, the plugin that parses the querystring could be conditioned to replace the ‘+’ character with the appropriate %20 space escape character. Or have a more general RegEx based string manipulation feature. Thanks for any help you can provide. The page I need help with: [ log in to see the link]
Hello, Adding encoding to the link would change the plus character to the escape character of %2B. It would only change to %20 if it was a space. Since this is specific to your situation you would need some custom logic since you would like to change a plus character to a space character. Thanks, Steve
Hello, Adding encoding to the link would change the plus character to the escape character of %2B. It would only change to %20 if it was a space. Since this is specific to your situation you would need some custom logic since you would like to change a plus character to a space character. Thanks, Steve