Hi All,
I've found some solutions on this forum to replace unwanted characters from MS Forms, but am not getting far with removing the \n characters that get appended to multiple choice responses in MS Forms.
Here are some of the other posts that have helped me reach this point:
Here is a picture of my flow:
The compose function is using this expression:
replace(body('Get_response_details')?['re161b12e16c941ba887a822bf85f74d3'],'\n','')
I have also tried using the expression directly within the SharePoint update list item connector. In all cases, the replace function is simply ignored and the output is:
"Option1\n"
"Option2\n"
Etc...
This is a real dealbreaker because the data is being inserted into a SharePoint List calculated column and results in a line break, which breaks the calculated column formula.
Any help would be greatly appreciated.
Thanks.
Solved! Go to Solution.
Hi @jasonmurphy
Could you try this?:
uriComponentToString(replace(uriComponent(body('Get_response_details')?['re161b12e16c941ba887a822bf85f74d3']), '%0A', ''))
The UriComponent function returns an uncoded version for a string and replace unsafe characters with escape characters ('%0A' is line break one). The UriComponentToString encodes again the string.
Hope it helps!
Ferran
Hi @jasonmurphy
Could you try this?:
uriComponentToString(replace(uriComponent(body('Get_response_details')?['re161b12e16c941ba887a822bf85f74d3']), '%0A', ''))
The UriComponent function returns an uncoded version for a string and replace unsafe characters with escape characters ('%0A' is line break one). The UriComponentToString encodes again the string.
Hope it helps!
Ferran
Hi @fchopo ,
Please help me....
How can I use line break in Join action with the below statement
...
I want to display the multiple values in email:
instead of
Banner1, Banner2, Banner3
Hi @tn101
Create a string variable with a line break and use it in the join action.
Hope it helps!
Ferran
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
Read the latest about new experiences and capabilities in the Power Automate product blog.
User | Count |
---|---|
26 | |
25 | |
25 | |
21 | |
17 |
User | Count |
---|---|
54 | |
46 | |
33 | |
32 | |
30 |