- Is it possible to ignore a group? it would be nice to do something like
matcher=(.?)<title>(.?)</title>(.?)(.?)(.*?)
order=ignore,name,ignore,url,ignore
- what about to add StringEscapeUtils.unescapeHtml() to line ChannelFolder:669
from String mUrl=m.getMatch("url",true);
to String mUrl=StringEscapeUtils.unescapeHtml(m.getMatch("url",true));
Some pages it fails the parse cause the url contains &
thx and great work!
matcher=(.?)<title>(.?)</title>(.?)(.?)(.*?)
order=ignore,name,ignore,url,ignore
from String mUrl=m.getMatch("url",true);
to String mUrl=StringEscapeUtils.unescapeHtml(m.getMatch("url",true));
Some pages it fails the parse cause the url contains &
thx and great work!