Skip to content

Commit

Permalink
+ rzx archive web source parser repaired
Browse files Browse the repository at this point in the history
  • Loading branch information
djdron committed Nov 6, 2017
1 parent 7e09170 commit 499ab43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/web/io_web_source_rzx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static class eWebSourceRZX : public eWebSource
url += ".php";
string data = xPlatform::xWeb::GetURL(url.c_str());
smatch m;
regex expr("<tr><td><font size=2>(.+?)(?:<br>.+?|</td>)<td align=center><font size=2>(.+?)</td><td align=center>(?:<font size=1><A HREF=\"(.+?)\"|<font size=2 color=red>).+?");
regex expr("<font size=2>(.+?)(?:<br>.+?|</td>)<td align=center><font size=2>(.+?)</td><td align=center>(?:<font size=1><A HREF=\"(.+?)\"|<font size=2 color=red>).+?");
string::const_iterator beg = data.begin(), end = data.end();
while(std::regex_search(beg, end, m, expr))
{
Expand Down

0 comments on commit 499ab43

Please sign in to comment.