substringAfterLast
Return the part of a string after the LAST occurrence of a delimiter.
string(required): the source stringdelimiter(required): the delimiter to search for
utlx
substringAfterLast("a.b.c.d", ".") // "d"
substringAfterLast("/usr/local/bin", "/") // "bin"