#1
|
|||
|
|||
Use Regular Expression on command output
I'm running a subversion command line (svn info), and I want to use a regular expression to grab part of the output. Is there a way to do that without first writing it to a file?
|
#2
|
|||
|
|||
The step's output is available in the LASTSTEP_OUTPUT system macro. You could access it from the step's vbld_StepDone script event [1] like this:
Application.Macros(vbldMacroSystem)("LASTSTEP_OUTP UT").Value [1] http://www.visualbuild.com/Manual/?scriptevents.htm |
|
|