Hi all!
Is there any WDL function / action component / trick that can help me to translate any HTML number (https://www.ascii.cl/htmlcodes.htm) into its corresponding Ascii characters?
For example, I am getting a JSON as follows:
{
"Title": "Jornada ‘Familia 4.0’",
"ULR": "http:/..."
}
Thank you in advance!
Thank you in advance!
Proud to be a Flownaut!
Solved! Go to Solution.
Hi @ efialttes,
Translating HTML number to its corresponding Ascii characters is not supported in Microsoft flow currently.
If you would like this feature to be added in Microsoft Flow, please submit an idea to Flow Ideas Forum:
https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas
Regards,
Alice Zhang
Hi @ efialttes,
Translating HTML number to its corresponding Ascii characters is not supported in Microsoft flow currently.
If you would like this feature to be added in Microsoft Flow, please submit an idea to Flow Ideas Forum:
https://powerusers.microsoft.com/t5/Flow-Ideas/idb-p/FlowIdeas
Regards,
Alice Zhang
Brute-force nesting of "replace" functions will work.
replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(
variables('myJson')['Title'],
'0', '0'), '1', '1'), '2', '2'), '3', '3'), '4', '4'), '5', '5'), '6', '6'), '7', '7'), '8', '8'), '9', '9')
Replace "variables('myJson')" with whatever output has your JSON body.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Did you know that you could restore a deleted flow? Check out this helpful article.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
23 | |
13 | |
11 | |
10 | |
8 |
User | Count |
---|---|
33 | |
25 | |
24 | |
17 | |
16 |