Friday, May 3, 2013

strip string ,remove text char from string,get only text string from full string,remove charackter from string


 private string StripString(string StrText)
        {
            string StripText = "";
            foreach (char chritem in StrText.ToCharArray())
            {
                if (char.IsDigit(chritem) != false)
                {
                    StripText += chritem;
                }
            }
            return StripText;
        }

No comments:

Post a Comment