Code: Select all
put "SMART,SMARt,SmArT,smart,Nöje,NÖJE,NöJe,nöje,NÖje" into tStr
filter items of tStr with "smart"
Code: Select all
put "SMART,SMARt,SmArT,smart,Nöje,NÖJE,NöJe,nöje,NÖje" into tStr
filter items of tStr with "nöje"
You get the same result with ä vs Ä, å vs Å, é vs É etc. I.e. all characters with combined diacritical marks will not match case insensitive. Is this a bug or what?
If I do the following code:
Code: Select all
if "nöje" is "NÖJE" then
answer "YES"
else
answer "NO"
end if
:-Håkan (Which doesn't match HÅKAN when filtering...)