mirror of
https://git.lewd.wtf/PGR/ascnet
synced 2025-12-12 22:44:37 +01:00
17 lines
365 B
C#
17 lines
365 B
C#
namespace AscNet.Logging
|
|
{
|
|
public static class LoggingExtensions
|
|
{
|
|
public static string RemoveBefore(this string value, char character)
|
|
{
|
|
int index = value.LastIndexOf(character);
|
|
if (index > 0)
|
|
{
|
|
value = value[(index + 1)..];
|
|
}
|
|
|
|
return value;
|
|
}
|
|
}
|
|
}
|