Differences between revisions 12 and 13
Revision 12 as of 2015-04-02 14:19:29
Size: 639
Comment:
Revision 13 as of 2015-04-05 00:18:23
Size: 656
Comment:
Deletions are marked like this. Additions are marked like this.
Line 28: Line 28:
CategoryDyalogExamplesDotNet CategoryDyalogExamplesDotNet   CategoryDyalog

netUpperLowerCase

LowerCase and UpperCase

The 2 functions ToLowercase and ToUppercase are used when dealing with Unicode characters:

 ToLowercase←{
     (0=1↑0⍴⍵):''
     ⎕USING←',mscorlib.dll'
     (⎕NEW System.String(⊂,⍵)).ToLowerInvariant
 }

 ToUppercase←{
     (0=1↑0⍴⍵):''
     ⎕USING←',mscorlib.dll'
     (⎕NEW System.String(⊂,⍵)).ToUpperInvariant
 }

      ToUppercase 'monday'
MONDAY

      ToUppercase¨ 'sunday' 'monday' 'tuesday'
 SUNDAY  MONDAY  TUESDAY

      ToUppercase 'Вторник'
ВТОРНИК


CategoryDyalogExamplesDotNet CategoryDyalog

netUpperLowerCase (last edited 2015-04-14 20:18:23 by PierreGilbert)