Bring forth the holy hand grenade!
I am about ready to blow up.
I have an output tree from Parse::RecursiveDescent, and i now need to match the results from the rule: name ($name), to another name from another input file ($inputFileName). Something like,
while ($name = $inputFileName){
print $name;
}
So in effect i want to use $name (the output of the rule in the tree) to search, the input file for occurences of itself. i.e if $name = bob, i want to find all occurences of bob in the input file.
thx from a choirboy