1.

Solve : Setting a variable with reserved symbols?

Answer» HI,

I'm trying to set the following variable but it's not working because the ARROW SYMBOLS are reserved.

set break=<BR>

Is there a fix for this?

Thanks,

AndyYour looking for an escape character I BELIEVE and as described here for batch:

http://www.robvanderwoude.com/escapechars.phpC:\>set "break=^<BR^>"

C:\>echo %break%
<BR>

C:\>


Thanks, that works fine now


Discussion

No Comment Found