Reply to thread

Hi Khurram,


Generally that would but the idea. However, the Z tag builds a Regular Expression, so it could depend a little on what comes before and after. See the concept of greediness (Regex Tutorial - The Question Mark Makes the Preceding Token Optional). Also WebEPG does not make a difference between these two tags <dt> and <dd>.



if <dt> or <dd> = d

and </dt> or </dd> = D


Then the regex looks like "(dDdD)?(dDdD)?dDdD" and this is going to be matched to a long string from the HTML source using the same system.


/James


Top Bottom