Morten recently posted an article with that subject in the Dyalogusers-Group.
Unfortunately FF3.5 only displays garbage for me when I read that article, despite configuring it to display APL (as described in APL Wiki). I also tried to paste that garbage into the Dyalog Session, as sometimes this clears up things - but this time "Garbage in, Garbage out" applied :(
Would someone pls. be so kind to have a look at that article and paste it here?
Upper/Lowercase on Unicode-Data
Re: Upper/Lowercase on Unicode-Data
Someone asked me how to do this today, and I thought it would be worth posting the solution here:Code: Select all
ToLower←{⎕USING←'' ⋄ (⍴⍵)⍴(⎕NEW System.String (⊂,⍵)).ToLower ⍬}
text (ToLower text)
ABCDEFGÆØÅ abcdefgæøå
ΑΒΓΔΕΖΗΘΙΚ αβγδεζηθικ
АБВГДЕЖЗИЙ абвгдежзий
ԱԲԳԴԵԶԷԸԹԺ աբգդեզէըթժ
Requires the Microsoft.Net framework to be present, of course.
Morten
Re: Upper/Lowercase on Unicode-Data
Ah, now that looks much nicer :)
Thanks very much!
Michael
Thanks very much!
Michael