Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/String-case/REXX/string-case-7.rexx
Normal file
11
Task/String-case/REXX/string-case-7.rexx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
x='alphaBETA'; Say ' x='||x
|
||||
Say 'three ways to uppercase'
|
||||
u1=translate(x); Say ' u1='u1
|
||||
u2=upper(x); Say ' u2='u2
|
||||
parse upper var x u3; Say ' u3='u3
|
||||
|
||||
abc ='abcdefghijklmnopqrstuvwxyz'
|
||||
abcu=translate(abc); Say 'three ways to lowercase'
|
||||
l1=translate(x,abc,abcu); Say ' l1='l1
|
||||
l2=lower(x); Say ' l2='l2
|
||||
parse lower var x l3; Say ' l3='l3
|
||||
Loading…
Add table
Add a link
Reference in a new issue