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)