Hi,
I would like to open all the files in a project, parse it, search for a string, and generate an output.
I'm completely new to slickEdit programming. Sorry for the grammar.
Example
#define STRINGTOBESEARCH 1
#define VALUE 1
#define ERROR -1
if (STRINGTOBESEARCH == 1) {
varA = VALUE
varB = VALUE
}
else {
varC = ERROR
varD= ERROR
}
The output is something like this in a buffer or text file:
varA = 1
varB = 1
Thanks.