A quick code snippet to strip all HTML tags using a regular expression. If you are going to call something like this often, then it might be an idea to set the RegEx.Options to Compiled.
using System.Text.RegularExpressions;
…
SQL Server, performance, data, analytics
A quick code snippet to strip all HTML tags using a regular expression. If you are going to call something like this often, then it might be an idea to set the RegEx.Options to Compiled.
using System.Text.RegularExpressions;
…