Line 4749 aryTemp(317,0) = "Swedan" aryTemp(317,1) = "\.se"
Should read aryTemp(317,0) = "Sweden" aryTemp(317,1) = "\.se"
Hehe thanx.
Can you help figure out how to modify it to work with swedish characters in the keyword-report as well?
Here is a start, but the regexp needs to be changed as well:
Case "%E4" ' ä strDecode = "ä" Case "%E5" ' å strDecode = "å" Case "%F6" ' ö strDecode = "ö" Case "%C5" ' Å strDecode = "Å" Case "%C4" ' Ä strDecode = "Ä" Case "%D6" ' Ö strDecode = "Ö" Case "%c3%a4" ' ä strDecode = "ä" Case "%c3%b6" ' ö strDecode = "ö" Case "%c3%a5" ' å strDecode = "å"
www.contentaweb.com
bijou bugette
Hehe thanx.
Can you help figure out how to modify it to work with swedish characters in the keyword-report as well?
Here is a start, but the regexp needs to be changed as well:
Case "%E4" ' ä
strDecode = "ä"
Case "%E5" ' å
strDecode = "å"
Case "%F6" ' ö
strDecode = "ö"
Case "%C5" ' Å
strDecode = "Å"
Case "%C4" ' Ä
strDecode = "Ä"
Case "%D6" ' Ö
strDecode = "Ö"
Case "%c3%a4" ' ä
strDecode = "ä"
Case "%c3%b6" ' ö
strDecode = "ö"
Case "%c3%a5" ' å
strDecode = "å"
www.contentaweb.com