Suppose I already have the following result appeared on my page:
No Account Note
1 11 A
2 22 B
3 33 C
4 44 D
Then, I want to export this to a txt file with CSV format, so it would appear like the following in the file:
1,11,A
2,22,B
3,33,C
4,44,D
How to do this?
No Account Note
1 11 A
2 22 B
3 33 C
4 44 D
Then, I want to export this to a txt file with CSV format, so it would appear like the following in the file:
1,11,A
2,22,B
3,33,C
4,44,D
How to do this?