Str.strrstrLen

Searches the string haystack for the last occurrence of the string needle, limiting the length of the search to haystack_len.

class Str
static
string
strrstrLen

Parameters

haystack string

a nul-terminated string.

haystackLen gssize

the maximum length of haystack.

needle string

the nul-terminated string to search for.

Return Value

Type: string

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

Meta