strrstr

fun strrstr(haystack: String, needle: String): String(source)

Searches the string @haystack for the last occurrence of the string @needle.

Return

a pointer to the found occurrence, or NULL if not found

Parameters

haystack

a string to search in

needle

the string to search for