perl vams has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
i want to search for pattern like "module_name("
when i'm dng this ($NETLIST=~ m/$TOPMODULE/)
it is giving module_name_* content also for.
But i want only "module_name("
for this i used ($NETLIST=~ m/$TOPMODULE(/) and
($NETLIST=~ m/$TOPMODULE\(/) also but bith are not working.
Can anyone help me on this......