Hello,
I have a long string of text i.e. 1 row and 1 column. I want to parse the entire string, extract substrings based on delimiters and place them in appropriate columns. Below is an example of my string:
"Backfire – To produce an unexpected and unwanted result. The company’s new efficiency measures backfired when workers protested and staged a walkout, thus stopping production completely. Balance – The remaining part or leftover amount. The publishing division accounted for 25% of the profits, and the film division for the balance."
This is how I want it to look like:
| Word | Meaning | Example |
| Backfire | To produce an unexpected and unwanted result. | The company’s new efficiency measures backfired when workers protested and staged a walkout, thus stopping production completely |
| Balance | The remaining part or leftover amount. | The publishing division accounted for 25% of the profits, and the film division for the balance. |
I tried using the "Text to Columns" Node and '"Regex" Node, however, nothing seems to work. I don't know what I am doing wrong because my Regex is giving the correct output when I try it on Regex101.com.
Any help would be highly appreciated.
-Thanks