How to concat extra spaces other than using concat function in a value.
To convert a list of text strings to a string, concat is not working if it has multiple spaces in a sequence.
Eg: {"a"," "," "," "," "," "," ", "b"}
Actual output
using concat is "a b"
using to string function "a; ; ; ; ; ; ; b"
Expected output
"a b"
Discussion posts and replies are publicly visible
You can use the rule that uses concat directly in the necessary places, it will display only the raw output and not the formatted one
Thanks for your reply, I need it in expression rule not on UI and it is not for display on UI. I need to pass this value to an external system.
Did you try passing the output to the external system? Is it getting formatted there?
Yes, but it is not formatting. It's not even reflecting in a localvariable, how will it get formatted in external system?