Hey Jacob,
Thanks a ton! I got this to work well as long as there is a comma (,) between each entry in the multi-line input. For example, the following works:
nickname1,nickname2,nickname3 or
nickname1,
nickname2,
nickname3
My last question is how can I Regex this so that my users don’t have to rely on putting a comma in between each nickname. Ideally they can just input nicknames, one per line, without any commas. I’m not that familiar with Regex stuff yet.
EDIT: I tried using the following expression: [^\v]+ and it works using an online Regex tester, but it doesn’t work when I use it here in Bubble.
SOLVED: After a fair bit of experimentation I discovered that the proper syntax to use for Regex to delineate each item on a line-by-line basis is simply [^\n]+
Thanks for the help