1.> if you are getting a value as "abc|def|gh i"
Now to split it
Concept Make a string array separated by '|'
then you have the values and use it as you like
Example
Code:
string[] SplitTextBox = TextBox1.Text.Split('|');
or make for loop and get the values...
Leave a comment: