Actually I have some string with N number of plans like, for Example
"Smith 12345678 PlanA"
"Robert 09876543 PlanB"
"Steve 12345678 PlanA"
"Knae 09876543 PlanB"
"GoldSmith 09090909 planC"
......
If we know the number of plans, I can use If condition. But here I dono the number of plans. So, how can I create a datatable and store each records based on planID dynamically.
The Result will be like
All the records belongs to planA stores in one datatable , PlanB in another datatable and so on.
Looking for a help. Thanks in advance !!!