private string StripNumber(string StrText)
        {
            string StripText = "";
            foreach (char chritem in StrText.ToCharArray())
            {
                if (char.IsDigit(chritem) == false)
                {
                    StripText += chritem;
                }
            }
            return StripText;
        }
No comments:
Post a Comment