hi,
You can use this …
assign a string array to this below code
Split(“All blocks will finish in the END. Like everything in life, everything will finish in the END.”,“.”)
Hi, the issue is that the dot “.” is removed from the string elements. In that case that is always a dot, that is not an issue but if i want something like variable1.Split({“[a-z]{3} [0-9]{4}”},StringSplitOptions.None), i want to split the string when find this expression but i want to keep the expression in the string elements.
I already fixed my problem , and yes, I used a solution similar with what you suggested.
I used an “Activities.Matches” to grep all occurences of my regex and I used the same expression to split the text and inside the iteration I concat the first array elements with the second array elements and the result is the expected.