Discord Form message multi file download, file rename from Form data then Onedrive upload for dynamic folder

Hi Community,

I would like to get Form data and 1 or 2 files from Discord message, based on form data I would like to modify the files downloaded from Discord message and upload renamed files to Onedrive folder where the directory is also specified in the Discord Form data.

Currently I could not make this work. Stuck with Text Parser not giving output for example.

Would be glad if someone can help.

Text parser regex
(?<=utó:)(.*)(?=### Legj)

(?<=lya:)(.*)(?=### Vers)

Data to parse:
“content”: “### Versenypálya:\nteszt\n### Versenyautó:\nFFC F1 2007\n### Legjobb köridő:\n1:46.791 versenyen\n### Setupok:”

output bundles.txt (5.1 KB)

Discord Setup to OneDrive.blueprint.json (

36.4 KB)

Hey Molnar,

you can use regex101.com to build and troubleshoot regexes.

These two should work:

((?<=Versenypálya:\n).*)

for the track name

((?<=Versenyautó:\n).*)

for the one drive folder

2 Likes

Thanks for the parser fine tuning, managed to put together the whole flow, works perfectly now