Hi, is there any function that can find a string and return the match while also supporting the use of wildcards in the needle expression (essentially a vba equivalent of regex.match)? e.g. for such a function named StrMatch, StrMatch("Haystack", "s*") would return "stack"
Thanks