Building on @scott-jibben's idea of using Indices and ranges, and adding support for nulls and strings shorter than the desired max length, I arrived at the following extension method for LEFT:
public static string Left(this string myString, int maxLength)
{
if (string.IsNullOrEmpty(myString)) return myString;
return myString[..Math.Min(maxLength, myString.Length)];
}