Differences between revisions 2 and 14 (spanning 12 versions)
Revision 2 as of 2015-02-27 01:29:21
Size: 643
Comment:
Revision 14 as of 2015-04-05 00:37:01
Size: 693
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
<<TableOfContents>>
Line 5: Line 3:
== Overview == == LowerCase and UpperCase ==
Line 29: Line 27:

CategoryDyalogDotNetExamples
----
CategoryDotNet CategoryDyalog CategoryDyalogDotNet CategoryDyalogExamplesDotNet

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


CategoryDotNet CategoryDyalog CategoryDyalogDotNet CategoryDyalogExamplesDotNet

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