HI,
I've got a MapleCode with exports the data in the end into an ".txt"-File. Now it's necessary to create an"Tab" instead of the semicolon, which is produced now between A and B.
Now: "A;B"
Should be: "A B" (Tab between).
> fd := fopen("C:/ZZZ_TEST4.txt", WRITE);
> fprintf(fd, "A"); fprintf(fd, ";"); fprintf(fd, "B");
print(`output redirected...`); # input placeholder
> fclose(fd);
I would be very pleased if you could help me, I'm already a little bit hopeless.
Best Regards,
Moe