I have a paragraph and i wanted to split it.
this is the paragraph For eg: This is make.com breakThis helps you to Automate breakIt helps you save your time
So basically where ever there is break i want to split and I was able to achieve it with the below filter
First >{{get(split(paragraph
; “break”); 1)}}
Middle >{{get(split(paragraph
; “break”); 2)}}
Last >{{get(split(paragraph
; “break”); 3)}}
Now the issue is when there is nothing before break and when its directly starts with break for eg: breakThis helps you to Automate breakIt helps you save your time
so here 2nd becomes 1st and 3rd becomes 2nd
Any suggestion…?