Returns the substring after the first 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 first occurrence of any the given separators
David Hsing
substringAfterAny("foo/bar/foo/bar", ["/foo", "/bar"]); // '/bar' Copy
substringAfterAny("foo/bar/foo/bar", ["/foo", "/bar"]); // '/bar'
Returns the substring after the first occurrence of any the given separators (the separator is not returned)