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
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)