String case: Difference between revisions

→‎{{header|APL}}: add Dyalog APL version
(Added Dyalect programming language)
(→‎{{header|APL}}: add Dyalog APL version)
Line 325:
i*m using apl*
</lang>
==={{header|APL (Dyalog)}}===
 
Dyalog APL has a function for case conversion, I-beam with code 819 (mnemonic, looks like 'BIg'). This is Unicode-aware and preserves punctuation; defaults to lowercase, or with left argument 0 does lowercase. Left argument 1 does uppercase:
<lang APL>
(819⌶) 'I''m using APL!'
i'm using apl!
1 (819⌶) 'I''m using APL!'
I'M USING APL!
</lang>
 
=={{header|AppleScript}}==
Anonymous user