gmail enter textbox i need remove after @ symbol Character
ex : [email protected]
output = adcde
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.
Upendra Pratap ShahiPosted Aug 3, 2015, 4:39 AM
string sTest = "[email protected]";
string number = sTest.Split('@')[0].Trim();
g sPosted Aug 3, 2015, 4:31 AM