Removing Substring in asp.net with c# - CodeProject
Dear Friends, Here i want to Remove a sub string: Example:Angel Nursery School; 001 i want to Remove ;001 But i have written a code like this: String text = ddlschoolname.Text; String numbers = text; if (text.Length >= 10) { numbers = text.Substring(text ...