Returns the substring after the first occurrence of the given separator (the separator is not returned)
Optional
The string to get a substring from
The string to search for
the substring after the first occurrence of the given separator
David Hsing
substringAfter("foo/bar/foo/bar", "/"); // 'bar/foo/bar' Copy
substringAfter("foo/bar/foo/bar", "/"); // 'bar/foo/bar'
Returns the substring after the first occurrence of the given separator (the separator is not returned)