!752
!image classes
m {
p {
showBigText("Visitors today", "getTextAndTitle", 30000);
}
static S[] getTextAndTitle() {
S in = loadPage("http://tinybrain.blog.de");
// Code from solution of #1000455
Matcher m = Pattern.compile("
(\\d+)
").matcher(((String) in));
in = m.find() ? m.group(1) : "";
print(in);
ret new S[] {in, in + " visitors today"};
}
}