mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
20 lines
532 B
C#
20 lines
532 B
C#
using System;
|
|
|
|
namespace BTCPayServer
|
|
{
|
|
public static class StringExtensions
|
|
{
|
|
public static string TrimEnd(this string input, string suffixToRemove,
|
|
StringComparison comparisonType)
|
|
{
|
|
if (input != null && suffixToRemove != null
|
|
&& input.EndsWith(suffixToRemove, comparisonType))
|
|
{
|
|
return input.Substring(0, input.Length - suffixToRemove.Length);
|
|
}
|
|
else
|
|
return input;
|
|
}
|
|
}
|
|
}
|