regex for autorec
#1
Tongue 
Just spent the last 20 minutes working out the regex to record this seasons LIVE only Super Rugby games.

last year it was as simple as 'Super Rugby Live'

This year they are sending down the EPG guide as Super Rugby: XXX v YYY LIVE so to avoid missing games you need to ignore the XXX v YYY bit and also as you don't want to record the replays you want to match on live.

The magic string to accomplish this.
Code:
\w*(Super Rugby:)\s\w*\sv\s\w*\s\w*(LIVE)

Basically match Super Rugby: ignore the middle and match LIVE results in all Live Super Rugby games being scheduled by the automatic recorder..
Reply


Messages In This Thread
regex for autorec - by redstorm - 2014-03-22, 09:40
RE: regex for autorec - by negge - 2014-03-22, 23:28
RE: regex for autorec - by redstorm - 2014-03-28, 12:19
RE: regex for autorec - by Prof Yaffle - 2014-03-28, 14:08
RE: regex for autorec - by redstorm - 2014-03-29, 20:50
Logout Mark Read Team Forum Stats Members Help
regex for autorec0