I used HTML to text conversion and then split function via compose.
Now I have 45 lines/rows.
I need to extract line 4 from the output.
How can I do this?
Solved! Go to Solution.
Hi @GrischkePro,
According to your description, I made a simple test on my side. To get line 4 from the output, I used functions skip and take in the Compose action:
take(skip(outputs('Compose'),3),1)
It returned the line 4 properly.
More details about the WDL function, please check it at here:
Best regards,
Mabel Mao
Hi @GrischkePro,
According to your description, I made a simple test on my side. To get line 4 from the output, I used functions skip and take in the Compose action:
take(skip(outputs('Compose'),3),1)
It returned the line 4 properly.
More details about the WDL function, please check it at here:
Best regards,
Mabel Mao
Thanks @v-yamao-msft
Before I saw your solution, I came up with mine, which also works. However, yours is much cleaner so I will definitely try it, but can you please show me your first split line?
split(variables('emailTextVar'),outputs('breakCharacter'))
It's dirty, but it works
User | Count |
---|---|
87 | |
73 | |
43 | |
26 | |
26 |
User | Count |
---|---|
42 | |
27 | |
25 | |
23 | |
18 |