DocSpace-buildtools/web/ASC.Web.Core/Extensions/StringExtension.cs

141 lines
4.8 KiB
C#
Raw Normal View History

2022-03-15 18:00:53 +00:00
// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
namespace System;
public static class StringExtension
2019-06-07 08:59:07 +00:00
{
2022-03-17 16:57:02 +00:00
private static readonly Regex _reStrict = new Regex(@"^(([^<>()[\]\\.,;:\s@\""]+"
2022-03-17 15:13:38 +00:00
+ @"(\.[^<>()[\]\\.,;:\s@\""]+)*)|(\"".+\""))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"
+ @"\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$");
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
public static string HtmlEncode(this string str)
{
return !string.IsNullOrEmpty(str) ? HttpUtility.HtmlEncode(str) : str;
}
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
/// <summary>
/// Replace ' on
/// </summary>
/// <param name="str"></param>
/// <returns></returns>
public static string ReplaceSingleQuote(this string str)
{
return str?.Replace('\'', '');
}
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
public static bool TestEmailRegex(this string emailAddress)
{
emailAddress = (emailAddress ?? "").Trim();
2022-03-17 16:57:02 +00:00
return !string.IsNullOrEmpty(emailAddress) && _reStrict.IsMatch(emailAddress);
2022-03-17 15:13:38 +00:00
}
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
public static string GetMD5Hash(this string str)
{
var bytes = Encoding.Unicode.GetBytes(str);
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
using var CSP = MD5.Create();
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
var byteHash = CSP.ComputeHash(bytes);
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
return byteHash.Aggregate(string.Empty, (current, b) => current + string.Format("{0:x2}", b));
}
public static int EnumerableComparer(this string x, string y)
{
var xIndex = 0;
var yIndex = 0;
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
while (xIndex < x.Length)
2019-06-07 08:59:07 +00:00
{
2022-03-17 15:13:38 +00:00
if (yIndex >= y.Length)
{
return 1;
}
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
if (char.IsDigit(x[xIndex]) && char.IsDigit(y[yIndex]))
2019-06-07 08:59:07 +00:00
{
2022-03-17 15:13:38 +00:00
var xBuilder = new StringBuilder();
while (xIndex < x.Length && char.IsDigit(x[xIndex]))
2022-03-17 15:01:39 +00:00
{
2022-03-17 15:13:38 +00:00
xBuilder.Append(x[xIndex++]);
2022-03-17 15:01:39 +00:00
}
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
var yBuilder = new StringBuilder();
while (yIndex < y.Length && char.IsDigit(y[yIndex]))
2019-06-07 08:59:07 +00:00
{
2022-03-17 15:13:38 +00:00
yBuilder.Append(y[yIndex++]);
2019-06-07 08:59:07 +00:00
}
2022-03-17 15:13:38 +00:00
long xValue;
try
2019-06-07 08:59:07 +00:00
{
2022-03-17 15:13:38 +00:00
xValue = Convert.ToInt64(xBuilder.ToString());
}
catch (OverflowException)
{
xValue = long.MaxValue;
}
long yValue;
try
{
yValue = Convert.ToInt64(yBuilder.ToString());
}
catch (OverflowException)
{
yValue = long.MaxValue;
2019-06-07 08:59:07 +00:00
}
2022-03-17 15:13:38 +00:00
int difference;
if ((difference = xValue.CompareTo(yValue)) != 0)
{
return difference;
}
}
else
2022-03-17 15:01:39 +00:00
{
2022-03-17 15:13:38 +00:00
int difference;
if ((difference = string.Compare(x[xIndex].ToString(CultureInfo.InvariantCulture), y[yIndex].ToString(CultureInfo.InvariantCulture), StringComparison.InvariantCultureIgnoreCase)) != 0)
{
return difference;
}
xIndex++;
yIndex++;
2022-03-17 15:01:39 +00:00
}
2022-03-17 15:13:38 +00:00
}
2019-06-07 08:59:07 +00:00
2022-03-17 15:13:38 +00:00
if (yIndex < y.Length)
{
return -1;
2019-06-07 08:59:07 +00:00
}
2022-03-17 15:13:38 +00:00
return 0;
2019-06-07 08:59:07 +00:00
}
}