What I need to do is to read from that file, capture those 3 values: Attribute Name, Path and Project Name (tutorial in that case) and write it to output text file, B with the following syntax:
DELETE ATTRIBUTE "Atribute_Name" IN FOLDER "Path" FROM PROJECT "Tutorial";
and repeat for as many iterations as there are lines in the input file.
I like to use the string class find and substr methods to split strings.
You could read until the semicolon and then split on commas.
I will leave it as an exercise for you to modify the output from the split string.