home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
biz
/
db-2.3.lha
/
db
/
Examples
/
ARexxDemos
/
FirstUpper.db
< prev
next >
Wrap
Text File
|
1994-09-03
|
359b
|
12 lines
/* Rexxprogram for db that converts the first character of every word in the
current stringgadget to UPPER
Written by Richard Ludwig */
options results;GETFIELD;ret=''
if DATATYPE(result)='CHAR' & result~='' then do
do t=1 to WORDS(result)
ret=ret||UPPER(LEFT(WORD(result,t),1))SUBSTR(WORD(result,t),2)' '
end
PUTFIELD LEFT(ret,length(ret)-1)
END