home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / rexx / toupper.se < prev    next >
Encoding:
Text File  |  1996-12-24  |  199 b   |  19 lines

  1. /* rexx */
  2. options results
  3. 'GT'
  4. options
  5. line = result
  6. options results
  7. 'GI'
  8. options
  9. index = result
  10. num = SUBSTR(line, index+1, 1)
  11. if num == " " then 
  12.   do
  13.    'NC'
  14.   end
  15. num = upper(num)
  16. 'IN'
  17. num
  18. 'IN'
  19.