mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 06:53:07 +00:00
14 lines
351 B
C#
14 lines
351 B
C#
namespace Utils
|
|
{
|
|
public static class Str
|
|
{
|
|
public static string Between(string input, string open, string close)
|
|
{
|
|
var openIndex = input.IndexOf(open) + open.Length;
|
|
var closeIndex = input.LastIndexOf(close);
|
|
|
|
return input.Substring(openIndex, closeIndex - openIndex);
|
|
}
|
|
}
|
|
}
|