I’m trying to use a multi-line input to create many new things, one per line as entered by the user. I’d like to accept dozens or even hundred of lines in one submission.
So far I’ve hit a dead end, can’t even figure where to start. Help?
I’m trying to use a multi-line input to create many new things, one per line as entered by the user. I’d like to accept dozens or even hundred of lines in one submission.
So far I’ve hit a dead end, can’t even figure where to start. Help?
Quite difficult…Why don’t you try create a thing from each text. Multiline input is meant for a single large text. You can take its parts by string operations but will not work on different text length on each input
Aha, that makes sense!
Can you point me in the right direction in terms of taking its parts by string operations?