#1
|
|||
|
|||
Unexpanded macro value
I am trying to unexpand the macro value. A macro with this value is parsed and i want to retain its value.
Code:
"BUILD_URL=http://jenkins/job/Test%20New%20NUnit%20Test%20Script/lastBuild" I tried to do it this way without avail. Code:
Option Explicit Dim build_url build_url = "%BUILD_URL%" If Len(build_url) > 0 Then build_url = Replace( build_url, "%%", "%%%%" ) SetTemporaryMacroValue "BUILD_URL", build_url <--- this is a subfunction i use in the script End If What i need is the opposite of http://www.kinook.com/Forum/showthread.php?t=1233 |
|
|