Post Reply 
Accents replacement ?
Aug. 19, 2008, 07:16 PM
Post: #1
Accents replacement ?
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 !
Quote this message in a reply
Aug. 19, 2008, 10:08 PM
Post: #2
RE: Accents replacement ?
depends on what you mean by "replace" them...

is your browser simply displaying "question marks" whenever an accented letter 'should be' displayed ???
Add Thank You Quote this message in a reply
Dec. 09, 2008, 07:25 PM
Post: #3
RE: Accents replacement ?
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."
Add Thank You Quote this message in a reply
Post Reply 


Forum Jump: