strstr — Locate substring
res = strstr(haystack,needle)
A character string or matrix of character strings
A character string or matrix of character strings
A character string or matrix of character strings
res = strstr(haystack,needle)
Returns a string
matrix starting from where the first occurrence of needle in haystack to
the end of haystack, or '' if there needle is not part of haystack.