Reply to thread

ok thanks.  been reading MediaPortal_WebEPG_Grabber - MediaPortal Manual Documentation as the second  UK grabber is HTML but I am not  100% sure I get it....


[code]<Search match="\([0-9]{1,3}[,][0-9]{0,3}\)" field="#EPISODE" remove="true" />


<Search match="\([0-9]{1,3}\)" field="#EPISODE" remove="true" />


<Search match="\([0-9]{1,3}[/][0-9]{0,3}\)" field="#EPISODE" remove="true" /> [/code]

Surely across all three these will just add any number in the text to #EPISODE ?? 


Is there no way to use back references so if you have

Series 1 Episode 5

in the HTML I can extract just relevant numbers?


ie = match="Series\s([0-9]{1,3})"  and just use the sub-expression in backets?


Top Bottom