home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
SASC6571.LZX
/
rexx
/
toupper.se
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-12-24
|
199 b
|
19 lines
/* rexx */
options results
'GT'
options
line = result
options results
'GI'
options
index = result
num = SUBSTR(line, index+1, 1)
if num == " " then
do
'NC'
end
num = upper(num)
'IN'
num
'IN'