jellyfin/MediaBrowser.Common/Extensions/BaseExtensions.cs

43 lines
1.2 KiB
C#
Raw Normal View History

using System;
2019-12-11 00:13:57 +01:00
using System.Security.Cryptography;
using System.Text;
2018-12-28 00:27:57 +01:00
using System.Text.RegularExpressions;
namespace MediaBrowser.Common.Extensions
{
/// <summary>
2019-12-11 00:13:57 +01:00
/// Class BaseExtensions.
2018-12-28 00:27:57 +01:00
/// </summary>
public static class BaseExtensions
{
/// <summary>
/// Strips the HTML.
/// </summary>
/// <param name="htmlString">The HTML string.</param>
2019-09-20 12:42:08 +02:00
/// <returns><see cref="string" />.</returns>
2018-12-28 00:27:57 +01:00
public static string StripHtml(this string htmlString)
{
// http://stackoverflow.com/questions/1349023/how-can-i-strip-html-from-text-in-net
2019-09-20 12:42:08 +02:00
const string Pattern = @"<(.|\n)*?>";
2018-12-28 00:27:57 +01:00
2019-09-20 12:42:08 +02:00
return Regex.Replace(htmlString, Pattern, string.Empty).Trim();
2018-12-28 00:27:57 +01:00
}
/// <summary>
2019-09-20 12:42:08 +02:00
/// Gets the Md5.
2018-12-28 00:27:57 +01:00
/// </summary>
2019-09-20 12:42:08 +02:00
/// <param name="str">The string.</param>
/// <returns><see cref="Guid" />.</returns>
2018-12-28 00:27:57 +01:00
public static Guid GetMD5(this string str)
{
2019-12-11 00:13:57 +01:00
#pragma warning disable CA5351
using (var provider = MD5.Create())
{
return new Guid(provider.ComputeHash(Encoding.Unicode.GetBytes(str)));
}
2019-12-11 00:13:57 +01:00
#pragma warning restore CA5351
2018-12-28 00:27:57 +01:00
}
}
}