static void Main(string[] args)
Console.WriteLine("223232-1.jpg".GetUntil('-'));
Console.WriteLine("443-2.jpg".GetUntil('-'));
Console.WriteLine("34443553z-5.jpg".GetUntil('-'));
static class StringExtensions
public static string GetUntil(this string that, char @char)
return that[..(IndexOf() == -1 ? that.Length : IndexOf())];
int IndexOf() => that.IndexOf(@char);