Hello,
I'm unable to replace accents, do you know how to do a such thing ?
My browser configuration is set up in french, so I use the following accentuation : àáâãäåòóôõöøèéêëçìíîïùúûüÿñ
Thanks by advance for all !
depends on what you mean by "replace" them...
is your browser simply displaying "question marks" whenever an accented letter 'should be' displayed ???
I had problems importing lyrics to the ID3 of mp3 when the vowels had spanish tildes. I made this filter, maybe it helps you:
Code:
[Patterns]
Name = "Lyrics: Remove tildes in lyrics {ln}081117"
Active = TRUE
URL = "$TYPE(htm)(www.seeklyrics.com/|www.sweetslyrics.com/)"
Limit = 190
Match = "("
"á$SET(1=a)|"
"é$SET(1=e)|"
"í$SET(1=i)|"
"ó$SET(1=o)|"
"ú$SET(1=u)"
")(^$TST(Inside_Link=1))(^$TST(Inside_Script=1))"
Replace = "\1"
It doesn't requires the defining of Inside_Link, neither Inside_Script but will work better using them:
Code:
[Patterns]
Name = "Defining [Inside_Script/Link] {ln}081124 (Read!)"
Active = TRUE
URL = "$TYPE(htm)"
Limit = 256
Match = "< ("
"script(\s|>)$SET(Inside_Script=1)|"
"/script >$SET(Inside_Script=)|"
"a\s$SET(Inside_Link=1)|"
"/a >$SET(Inside_Link=)"
")PrxFail$TST()"
Replace = "Place this filter always at the end of the list."