I need to count the number of #define lines in C files (3 of them) using VBS. Please suggest the best way to accomplish this.
|
up vote
2
down vote
favorite
|
|||||||||||||
|
|
up vote
1
down vote
|
The script below uses a regular expression to count the
Here's the script code:
The script output is like:
|
||
|
|
|
up vote
0
down vote
|
How about something like this? just pass the files in as arguments
This will ignore blank spaces between # and define
|
||||
|
|
up vote
0
down vote
|
This code should count all #define statements in any number of input files. Provisions have been made for whitespace in the statements, such as "# define" or "# define" both of which are valid statements. NOTE: I do not count for the # on one line and the "define" on the next, I'm assuming the # and "define" are at least on the same line, though you could do so by reading the entire file and removing all whitespace, then save to a variable or temp file or something like that and use that as your input. You can shorten the code a bunch by ditching the file access constants and what not, otherwise it will give you output like this:
The command line would be: cscript scriptname.vbs c:\define.txt c:\define3.txt etc...
|
|||
|
|
|
up vote
0
down vote
|
I'm not that good at VB script, but something like ...
|
||
|
|