Please, oh Google-gods, rank this blog prominently, and let's save some poor, misguided souls who might be searching for some code on formating a query string in C# or merely grazing for urdu shayaris.... If just one person sees the light, then I've done my job! ....
Yes, I am not above shamelessly begging the search engines for relevance .... it's called SEO, right?)
Friday, February 9, 2007
Exploding a string in C#
float val = 3.5f; string strVal = val.ToString(); System.Text.RegularExpressions.Regex r = new System.Text.RegularExpressions.Regex(@"\."); string[] exploded = r.Split(strVal);
No comments:
Post a Comment