1
Answer

how to removr character from the user inputed string and join to the last of the string in asp.net

jignesh kadvani

jignesh kadvani

16y
2.2k
1
i am taking input string from user,
for ex user input "welcome"
now i want to remove this "w" and attach to the last of the string so the newly created word become "elcomew" and i want to do every time user  click on a button in a webpage...  and first character should remove and attached to the last .. can anybody give solution with code...


Answers (1)
0
Manish Dwivedi

Manish Dwivedi

NA 8.3k 1.2m 16y
Hi Jignesh,
use this for doing that.
string str = "welcome";
string newString = str.Substring(1, str.Length - 1) + str.Substring(0, 1);