cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Shane_G
Frequent Visitor

Desktop variable escaping the URL Encoded Percent Characters .i.e. %2F aka / (Forward Slash)

I was working with variables and found that it did not like URL Encoded Percent Characters .i.e. %2F aka / (Forward Slash) when I copied and pasted it, I am assuming this is b/c it is the wrapper for the variable in the Flow Designer, it was easy for me to fix (This time) replaced the characters with ascii values, BUT, was wondering if there is a way to escape the percent sign (and other special characters as needed) as in other languages like C# or JavaScript?

Use case that comes to mind is dynamic content, how do you scan and 'replace' the special characters and escape them???

As always, any and all help would be greatly appreciated, links, references, blogs, etc. are certainly welcome (Especially on this topic) and know I appreciate those who contribute and help guide me.


Stay safe.
Best Regards.
SG.

1 ACCEPTED SOLUTION

Accepted Solutions
fraenK
Memorable Member
Memorable Member

Usage and escaping is described here:

https://docs.microsoft.com/en-us/power-automate/desktop-flows/variable-manipulation

 

Occasionally, the percentage sign should be used as a simple character, instead of denoting a calculation. In those cases, it should be escaped using another percentage character (%%).

 

Replace text: https://docs.microsoft.com/en-us/power-automate/desktop-flows/actions-reference/text#replace

View solution in original post

2 REPLIES 2
fraenK
Memorable Member
Memorable Member

Usage and escaping is described here:

https://docs.microsoft.com/en-us/power-automate/desktop-flows/variable-manipulation

 

Occasionally, the percentage sign should be used as a simple character, instead of denoting a calculation. In those cases, it should be escaped using another percentage character (%%).

 

Replace text: https://docs.microsoft.com/en-us/power-automate/desktop-flows/actions-reference/text#replace

evanchatter
Regular Visitor

An escape character enables you to output characters you wouldn't normally be able to, usually because the browser will interpret it differently to what you intended. The following code shows that the simple and easy method to escape HTML special chars in JavaScript.

 

var escape = document.createElement('textarea');
function escapeHTML(html) {
escape.textContent = html;
return escape.innerHTML;
}

 

Helpful resources

Announcements
Power Automate News & Announcements

Power Automate News & Announcements

Keep up to date with current events and community announcements in the Power Automate community.

Community Calls Conversations

Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Automate Community Blog

Power Automate Community Blog

Check out the latest Community Blog from the community!

Users online (2,724)