Hi everybody!
When I assign a string containing backslashes to a string variable in a REXX program, the contents of the variable have colons in place of the backslashes.
Could someone help me by explaining why this happens and also helping me solve it by keeping the backslashes? The string is a windows path.
/* REXX */
PATH = 'C:\WINDOWS\TEMP'
SAY PATH
The response is:
C::WINDOWS:TEMP