Sorry, I don't get these [f*] bin
Wars working

How I think it
should be done:
- The line in question is the only line that starts with
[SPACE]<p><b>
---> line is too long to do a greedy regex match, has to go to a binvar instead
- On this line, all chunks to parse are pieces starting with:
[SPACE]onclick="(new Image()).src='/rg/find-title-
.... and ending with a </td> if they shall include the "year/aka" part, or an </a> if they shall not include the year and aka respectively. As far as I can see, there's no need to go for the initial <a href="/title/tt
LINKDIGITS/".
---> loop all $bfind occurences of this starting piece, pick a chunk of sufficient length (short enough to be regex-checked). Each successive $bfind starts at $calc(last found location + $len(search term)).
---> In the loop, pick linkNr. and title of that chunk: $regml(1) and $regml(2). Regexes:
with aka and year:
/\/find-title-\d+\/title_exact\/images\/b.gif\?link=\/title\/tt(\d+)\/';">(.+?)<\/td>/i
and
/\/find-title-\d+\/title_substring\/images\/b.gif\?link=\/title\/tt(\d+)\/';">(.+?)<\/td>/i
or main title only:
/\/find-title-\d+\/title_exact\/images\/b.gif\?link=\/title\/tt(\d+)\/';">(.+?)<\/a>/i
and
/\/find-title-\d+\/title_substring\/images\/b.gif\?link=\/title\/tt(\d+)\/';">(.+?)<\/a>/i
---> To convert possible "special chars" in the title: e.g. $regsubex( $regml(2) ,/&#(\d+);/g,$chr(\1))
---> To clean the html-tags of the title (only needed if aka/year are included), your $nohtml alias or e.g. another: $regsubex( char-cleared-title ,/<.+?>/g,$null)
____
I'd be
glad if someone can give a nice, concrete example how to do a loop ($bfind chunks) of a lengthy, sockreaded &binvar