22 lines
540 B
C#
22 lines
540 B
C#
using System;
|
|
|
|
namespace Wino.Core.Extensions;
|
|
|
|
public static class StringExtensions
|
|
{
|
|
public static bool Contains(this string source, string toCheck, StringComparison comp)
|
|
{
|
|
return source?.IndexOf(toCheck, comp) >= 0;
|
|
}
|
|
|
|
public static string ReplaceFirst(this string text, string search, string replace)
|
|
{
|
|
int pos = text.IndexOf(search);
|
|
if (pos < 0)
|
|
{
|
|
return text;
|
|
}
|
|
return text.Substring(0, pos) + replace + text.Substring(pos + search.Length);
|
|
}
|
|
}
|