Posts
 
Reputation
Joined
Last Seen
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
1 Commented Post
0 Endorsements
Ranked #107.65K
~229 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for ishtine18

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];

Member Avatar for Iswariya
0
229

The End.