123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Security.Cryptography;
- namespace MediaBrowser.Common.Extensions
- {
- /// <summary>
- /// Class BaseExtensions
- /// </summary>
- public static class BaseExtensions
- {
- /// <summary>
- /// Strips the HTML.
- /// </summary>
- /// <param name="htmlString">The HTML string.</param>
- /// <returns>System.String.</returns>
- public static string StripHtml(this string htmlString)
- {
- // http://stackoverflow.com/questions/1349023/how-can-i-strip-html-from-text-in-net
- const string pattern = @"<(.|\n)*?>";
- return Regex.Replace(htmlString, pattern, string.Empty).Trim();
- }
- /// <summary>
- /// Gets the M d5.
- /// </summary>
- /// <param name="str">The STR.</param>
- /// <returns>Guid.</returns>
- public static Guid GetMD5(this string str)
- {
- using (var provider = MD5.Create())
- {
- return new Guid(provider.ComputeHash(Encoding.Unicode.GetBytes(str)));
- }
- }
- }
- }
|