Browse by Tags

All Tags » OneLine (RSS)
Thought I'd post a quick extension method that I made today. Hope it helps someone. public static string RemoveWhitespace( this string str) { try { return new Regex( @"\s*" ).Replace(str, string .Empty); } catch (Exception) { return str; } }
Posted by zowens | 12 comment(s)
Filed under: , , ,
More Posts