1-213B/KumarNager/SrNager/Hyd This Is Given string
I Wan To Display Like
HouseNum StreetName AreaName District
1-213B KumarNager SrNager Hyd
can u help me how to write it?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
theLizardPosted Jun 1, 2016, 10:00 PM
textBox1.Text = s.Replace("/", "\t");
suresh suriPosted Jun 1, 2016, 9:19 PM
ali tuncerPosted Jun 1, 2016, 9:12 PM
you can split method put words into string array..
string test = "1-213B/KumarNager/SrNager/Hyd";
string[] words= test.Split('/');