in reply to Re: Re^3: split loop error
in thread split loop error
I have no clue yet on why you are getting this bug, but I had another idea for a work-around. Can you make your expression non-greedy without it breaking?
If that works, you at least have a work-around to split the line as you wanted until a real fix is found.@outLine = split(/(<.*?>)/,$line);
Update: One more idea. Have you tried tracing the failing case by adding:
use re 'debug';
|
|---|