![]() |
|
Problems? Is your data what you think it is? | |
PerlMonks |
Re^5: Got some problem with read write fileby Laurent_R (Canon) |
on Sep 04, 2016 at 14:01 UTC ( #1171146=note: print w/replies, xml ) | Need Help?? |
Hmm, I don't see anything obviously wrong in your code. My best guess would be that that the regex doesn't match your input.
One thing you could to is to add the following line near the top: and, then, right after closing the $HUBFILE file handle, to print out the content of the @hubs array: to see the actual content of @hubs after having read the input file. My guess is that you'll also see only one record there, which would confirm that regex probably needs some change. Another thing you could do is to try to make the regex less strict about what it sees (maybe you don't have tabs, but spaces somewhere in your input): Finally, it would be useful if you posted a sample of your input data between <c> and </c> tags, so that we get a better idea of what this input really looks like.
In Section
Seekers of Perl Wisdom
|
|