Am doing an application to allocate the seats to the students in a building with rooms. I have almost done to allocate the students appropriatly in the rooms. The problem now is convert them to a single variable. So here is the place am struck with:
I have these data in a rich textbox:
1 11 200
1 12 201
1 13 202
2 11 203
2 12 204
2 13 205
1 21 100
1 22 101
1 23 102
2 21 103
2 22 104
2 23 105
3 21 106
now I need the string as follows:
Variable 1: (string type)
200,100,201,101,202,103
Variable 2: (string type)
203,103,204,104,205,105
Variable 3: (string type)
106