2010/4/29, Wes James <comptekki@REDACTED>: > I have a function grabbing a page and I'm pulling text out of the > result. I can get the line: > > lists:nth(424,B). > <<"<B>Page Counter</B></TD><TD>4880</TD></TR>">> Try something like re:run(lists:nth(424,B), "<TD>(\\d+)</TD>", [{capture, first, list}]).