Recently I changed the friendly url, due to this the querystryng used for searches was filtered without accents. Regarding queries to the database independent of the word having accent or not being found. But I used to give a replace to highlight the searched words
Replace (texto, palavra,"<b>" & palavra & "</b>"
In short, how can I use a ereg_replace()
to ignore accents. Example:
Texto="Este é um filme de Ação e tem muita ação. "
Palavra="acao"
texto=Ereg_replace(condição_RegEx_que_ignora_Acentos-e-case, texto, palavra,"<b>"& palavra & "</b>")
'Resultado q preciso:
"Este é um filme de <b>Ação</b> e tem muita <b>ação</b>."
Thanks in advance for your attention
@EDITE to explain better:
I have a word that is without accent coming from querystring, a search: example: toquio
I need to make a substitution to highlight this word in the text, whether or not it is accentuated.
Then a text with Tokyo or Tokyo or Tokyo or Tokyo
which was found by the search term: Tokyo or Tokyo or Tokyo or Tokyo
needs to be replaced by itself added by the tag <b>...</b>
so any text with the word: tokyo or tokyo or tokyo or tokyo should have itself added tag, like this:
era assim: Fui pra Toquio.
precisa ficar assim: Fui pra <b>Toquio</b>.
mas se for assim: Fui pra Tóquio.
precisa ficar assim: Fui pra <b>Tóquio</b>.
ou ainda: Fui pra tóquio.
precisa ficar assim: Fui pra <b>tóquio</b>.
ou ainda: Fui pra toquio.
precisa ficar assim: Fui pra <b>toquio</b>.
This is independent whether the user typed in tokyo or Tokyo or Tokyo or Tokyo
@david got better