Gil, I don't follow what you mean about multi-line strings.  I know you can't 
mean this, which REXX handles just fine:

  Longstr='blah blah blah blah blah blah blah blah',
     'blah blah blah blah blah blah blah blah blah'

And your second wish is surely not significantly different from:

  list='ssn ssx stm wcn wcx wln wlx wld'
  do while list<>''
    parse var list val list
    /* etc */

...which I do frequently.

---
Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313

/* Maybe those of us who have never been Beatles shouldn't judge them too 
severely. That degree of celebrity would test anyone's maturity, never mind 
four boys in their twenties. Still, we might reflect on the fact that none of 
Nat Cole's fans ever tried to shoot him.  -Joseph Sobran, 2001-12-06 */

-----Original Message-----
From: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> On Behalf Of 
Paul Gilmartin
Sent: Sunday, June 20, 2021 14:08

I wish Rexx supported multi-line strings.

I wish Rexx would let me:
    do List = "ssn ssx stm wcn wcx wln wlx wld" while List<>""
        parse var List L List
        /* etc.  */

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Reply via email to