Hi,
I have created a text widget with multiple text fields using Perl Tk. So its like a web form e.g
Name: (user entered xyz)
Address:(user entered 123)
Age:(user entered 77)
When a user enters text in the fields and submits it, the data gets copied to a csv file. So the csv file looks like this:
NamexyzAddress1 23Age77
I want the csv file to look like:
Namexyz,Address 123,Age77
How do I get the comma to be added to the text entered by the user
Thanks
I have created a text widget with multiple text fields using Perl Tk. So its like a web form e.g
Name: (user entered xyz)
Address:(user entered 123)
Age:(user entered 77)
When a user enters text in the fields and submits it, the data gets copied to a csv file. So the csv file looks like this:
NamexyzAddress1 23Age77
I want the csv file to look like:
Namexyz,Address 123,Age77
How do I get the comma to be added to the text entered by the user
Thanks
Comment