You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't understand what rules you propose that HTML::Parser should follow to parse this kind of
bogus HTML. You think it should treat "/**/" and "/" as whitespace?
Here 3 regular expressions applied to the entrance text correct this
problems:
s{(/\*)}{ $1}g;
s{(\*/)}{$1 }g;
s{(<[^/\s<>]+)/}{$1 /}g;
Probably you will find more correct architectural decision.
The text was updated successfully, but these errors were encountered:
Migrated from rt.cpan.org#55629 (status was 'open')
Requestors:
From [email protected] on 2010-03-16 15:09:51
:
From [email protected] on 2010-03-18 13:51:31
:
From [email protected] on 2010-04-04 20:38:08
:
From [email protected] on 2010-06-01 07:13:54
:
The text was updated successfully, but these errors were encountered: