StringMost[string]⟹outputString
returns the all but the last character from the input string.
Extract all but the last character in a string:
Extract all but the last character, even if the last characters are not alphanumeric:
Single character strings will return an empty string:
StringMost is equivalent to StringDrop[string,-1]:
StringMost does not work on empty strings:
Extract all but the last character from each string in a list of strings: