Differences between revisions 2 and 3
Revision 2 as of 2015-02-27 01:29:21
Size: 643
Comment:
Revision 3 as of 2015-02-27 01:31:06
Size: 658
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
== Overview == == LowerCase and UpperCase ==

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 'Вторник'
ВТОРНИК

CategoryDyalogDotNetExamples

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