Please note that "There is a \" is in one line and
"random backwhack in this sentence." starts in a new line so there is a hidden \n.
so if the command line is
set_input_clock 50 -rise -clock "ldtclock" \
find(port,"mxi_port")
Then I am doing this...
elsif (/set_input_clock\s+(\d+)\s+(\S+)\s+(\S+)\s+\"(\w+)\"\s+(\S+)*/ )
{
print STDERR "set_input_clock $1 $2 $3 $4 $5 \n";
but I also need to read the port name.
Presently I can only print
set_input_clock 50 -rise -clock "ldtclock" \
Is there a way?
Thanks