karelpeeters
08/16/2017, 9:45 PMcontains checks for an exact match, so it doesn't really fit your use case.nkiesel
08/16/2017, 10:14 PM"Hel" or really "Hl"? If the latter: how should that match? using regex "(?i).*H.*l.*"?karelpeeters
08/16/2017, 10:16 PMnkiesel
08/16/2017, 11:30 PMlab
08/17/2017, 3:14 AMHl, as in the target string contains all of the characters from the query string. Since Hello and Hell both have "h" and "l", they are chosen.