There are many debugging option available, but it says you need to compile Perl with -DDEBUGGER option. How do we do that on Windows with ActivePerl.
Also, I had this problem of out of memory with Perl. I was reading a XML file with 5 lines but the second line was way way too big, (the file size was 4.3Mb) for 5 lines. It does not parse this second line and fails to print the line:
print $_ if /match/ ; #match does exists fyi
How do I parse this second line then?