Returns the substring after the last occurrence of any the given separators (the separator is not returned)
Optional
The string to get a substring from
The strings to search for
the substring after the last occurrence of any the given separators
David Hsing
substringAfterLastAny("foo/bar/foo/bar", ["/", ";"]); // 'bar' Copy
substringAfterLastAny("foo/bar/foo/bar", ["/", ";"]); // 'bar'
Returns the substring after the last occurrence of any the given separators (the separator is not returned)