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