ExtensionMethod.NET Home of 880 C#, Visual Basic, F# and Javascript extension methods
Remove HTML <br \> tags from the string
using System; public namespace Extensions { public static class ExtensionMethods { public static string CleanBRTags(this string theString) { return theString.Replace(@"<br \>", ""); } } }
.
Author: unknown
Submitted on: 24 jan. 2008
Language: C#
Type: System.String
Views: 5004