sure!
the formula
.4(LENGTH(blah1) - LENGTH(REPLACE(LOWER(blah1),LOWER('test'),''))) / LENGTH('test') + .4(LENGTH(blah2) - LENGTH(REPLACE(LOWER(blah2),LOWER('test'),''))) / LENGTH('test')
assigns a relevance to wild card matches. basically, in the above formula, each wild card match is assinged .4.
then
- MATCH (blah1, blah2) AGAINST ('foobar') AS relevance FROM table WHERE MATCH (blah1, blah2) AGAINST ('foobar')>-1000
adds on the relevance returned from match against, where -1000, although excessive, makes sure you don't block out common words (while counting zero relevance from common words) from searches using wild cards.
try searching only on the word 'the' at the above link. each time there is a wild card match to 'the', the relevance is increased. at my site i have .2 instead of .4 so as to not given to much relevance to wild card matches.
also, at my site i have set the wild card match allowance to be up to 5 letters only. try searching on the wild card 'the' and the word 'distance' in the same search and see the relevance, i.e., rank ouputs.
the wild card 'the' will contribute (.2 * each 'the' occurrence) at my site, and the word 'distance' will contribute whatever match against says.
also, if you search only on a common word with length over 5 letters such as 'probably', then no results are returned.
however, if you search on 'the' and 'probably', you will see that the wild card 'the' contributes .2 as described above, but the common word 'probably', although it now shows up in the search results, contributes zero to the relevance.
i have this all working in mysql 3.23. hope that helps.