I have the generic fuzzy search right now, so that if type "a" it'll return me every word that contains an A. However I want a more refined search that does this.
For example I have the word: 'Frankster Muniz'
searching "frank","fr","f", "mun", "m" will indeed return 'Frankster Muniz'
searching "rank","ster","r", "niz" will not return anything
it must match the first beginning words,I have no idea where to start here. I am very new to regex. Thank you