Joined
Last Seen
-2 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #107.65K
1 Posted Topic
string s = txtValue.Text; char[] delimeter={',','@','$',' ','#','%','*','\t'}; string[] word = s.Split(delimeter); txtFName.Text = word[0]; txtLName.Text = word[1]; txtAge.Text = word[2]; txtDOB.Text = word[3];
The End.
Iswariya