FruityFoundation/Base/Extensions/StringExtensions.cs

20 lines
851 B
C#
Raw Normal View History

using System;
namespace FruityFoundation.Base.Extensions;
2021-11-19 00:12:02 -05:00
public static class StringExtensions
{
public static bool EqualsIgnoreCase(this string str, string otherString) =>
str.Equals(otherString, StringComparison.OrdinalIgnoreCase);
public static bool ContainsIgnoreCase(this string str, string otherString) =>
str.IndexOf(otherString, StringComparison.OrdinalIgnoreCase) != -1;
/// <summary>
/// Truncate a string to exactly <paramref name="maxLength"/> characters.
/// </summary>
/// <param name="str"></param>
/// <param name="maxLength">The maximum number of characters. If <paramref name="str"/> has fewer characters, it will be truncated to the length of <paramref name="str"/>.</param>
public static string Truncate(this string str, int maxLength) =>
str.Substring(0, Math.Min(str.Length, maxLength));
2021-11-19 00:12:02 -05:00
}