Hello,
I am developing an app that should have a way for users to export their configuration (currently stored in an Array) nad share it with other users by copying a string from the Settings page.
I currently have an Array that returns the following when I array.toString() it:
[[Stunde 1 Mo, Stunde 2 Mo, Stunde 3 Mo, Stunde 4 Mo, Stunde 5 Mo, Stunde 6 Mo, Stunde 7 Mo, Stunde 8 Mo, Stunde 9 Mo, Stunde 10 Mo, Stunde 11 Mo], [Stunde 1 Di, Stunde 2 Di, Stunde 3 Di, Stunde 4 Di, Stunde 5 Di, Stunde 6 Di, Stunde 7 Di, Stunde 8 Di, Stunde 9 Di, Stunde 10 Di, Stunde 11 Di], [Stunde 1 Mi, Stunde 2 Mi, Stunde 3 Mi, Stunde 4 Mi, Stunde 5 Mi, Stunde 6 Mi, Stunde 7 Mi, Stunde 8 Mi, Stunde 9 Mi, Stunde 10 Mi, Stunde 11 Mi], [Stunde 1 Do, Stunde 2 Do, Stunde 3 Do, Stunde 4 Do, Stunde 5 Do, Stunde 6 Do, Stunde 7 Do, Stunde 8 Do, Stunde 9 Do, Stunde 10 Do, Stunde 11 Do], [Stunde 1 Fr, Stunde 2 Fr, Stunde 3 Fr, Stunde 4 Fr, Stunde 5 Fr, Stunde 6 Fr, Stunde 7 Fr, Stunde 8 Fr, Stunde 9 Fr, Stunde 10 Fr, Stunde 11 Fr]]
The elements with a structure of "Stunde [x] [y]" are changeable by users and should be imported/exported.
How could I do what's essentialy the opposite of "Array.toString()"?
Best regards
Aaron