Text between: Difference between revisions

m
→‎version 2: changed wording in the REXX section header.
(→‎{{header|REXX}}: added REXX version 2.)
m (→‎version 2: changed wording in the REXX section header.)
Line 1,181:
This REXX version makes use of the REXX   '''parse'''   instruction to extract the required string.
 
Also, it wasn't necessary, but I <u>assummed</u> (bad assumption?) that the &nbsp; <big>'''\'''</big> &nbsp; iscould be an escape character, but unless clarified, it was treated as a
<br>it's being treated as a commom character, as&nbsp; REXX has no need for escape characters (within character strings).
<lang rexx>/*REXX programs displays the text between two text deliminiters in a target text string.*/
call TB 'Hello Rosetta Code world', "Hello ", ' world'