xxxxxxxxxx
import std.algorithm, std.functional, std.range, std.stdio, std.string;
void main()
{
auto html = " a,b<br/>1, 2<br/>3<br/> ";
auto rows = html.strip.splitter("<br/>").filter!(not!empty).map!(a => a.splitter(","));
rows.writeln;
}