Hi I want to split a string into multiple row but I have more than one delimiter to split it, The Split criteria is Space and "_" (I am trying to do with one text to columns because there could be multiple delimiters except these two)
| String |
| YE 2023_12 Marry |
the above one should be split like below
| String |
| YE |
| 2023 |
| 12 |
| Marry |
@Sshasnk one way of doing this
Hey Sshasnk
You can refer below workflow.

