Hello Community,
How can I separate the following results?
Example
76363534-192887Buzeta VU 50
It should be, to later create an html table
76363534-1 (There are some items that have 8 and 7 numbers before the hyphen)
92887
Buzeta VU 50
This is my flow
concat(item()?['Rut'],decodeUriComponent('%0d%0a'), item()?['_x0023_DTE'],decodeUriComponent('%0d%0a'), item()?['Obra'])
Hi @fgonzalez515,
You could add CRLF characters to the DTE value in your first Select action. You could use a concat function for that.
Below is an example expression:
concat(item()?['Rut'],decodeUriComponent('%0d%0a'), item()?['_x0023_DTE'],decodeUriComponent('%0d%0a'), item()?['Obra'])