I have a script that reads from a file and sorts out certain lines by a keyword. I need to be able to pick out a certain element from each of these discovered lines. The lines in the file are set up lie;
$(eval $(call CreateUvmTest, keyword, element_needed, morestuff...
$(eval $(call CreateUvmTest, keyword, element_needed, morestuff...
$(eval $(call CreateUvmTest, keyword, element_needed, morestuff...
$(eval $(call CreateUvmTest, keyword, element_needed, morestuff...
I am trying to figure out how I would read the lines with the keyword
and then write only the element_needed
to a file.
Example:
the line would be
$(eval $(call CreateUvmTest, keyword, run_test_file, $(run_test_file.exten) tc_run_test_file.sv
and I am hoping to write this to another file called listfile
containing only run_test_file
It is very important that it takes lines only containing keyword
in it cause there could be identical lines like this;
$(eval $(call CreateUvmTest, NOT_keyword, run_test_file, $(run_test_file.exten) tc_run_test_file.sv
Considering your other question, I guess you have to match the lines only if it contains
$(eval $(call CreateTest, KEYWORD
, I guess you may expect us to literally match the above and then extract the further element needed.input.txt
extractElement.tcl
Output :
Regex used :
Till
keyword,
it is matched literally, then[^,]+
is matching the element need to be extracted.Note : This is written by the assumption that the data will be separated with comma in each line.