Multiline input to individual things in database

Hi!
I had the same task.
So, here is my solution. Not the best and not the most optimal, but it seems to work.
Without plugins.

We can use Schedule API Workflow on a list event. Type of things = text. And pass the list of text things. In order to convert multiline text (from MultilineInput) into the list of text things we can use :extract with Regex with the pattern: [^\n][^\n]*[^\n]*
Maybe it’s not the best pattern, I’m not an expert in regex.
And you have to pass at least one parameter with This text thing. In my case, this is new_step param. These parameters are created elsewhere, I will show in the second screenshot.

Corresponding API endpoint must be created beforehand. In Backend workflows we create New API endpoint with specific text parameter/key (in my case it’s new_step). And add a step with a new thing creation where you can use this text parameter.