Friday, May 3, 2013

get only text string from string ,strip number,remove number from string,get only text string from string


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