0
I’m using the MATCH/AGAINST
of mysql to implement a search system, the problem is that, words with underlining (ex: lista_compras_mercado.txt) are interpreted as one, there is some way to turn underlined "separators" of words? as space?
0
I’m using the MATCH/AGAINST
of mysql to implement a search system, the problem is that, words with underlining (ex: lista_compras_mercado.txt) are interpreted as one, there is some way to turn underlined "separators" of words? as space?
Browser other questions tagged mysql full-text
You are not signed in. Login or sign up in order to post.
you’ve already looked at Mysql replace()
– Bruno H.
replace("mytext_text here","_"," ")
– Rovann Linhalis