- Moderator
- #1
My TV listings source site has some issues where it replaces quotes with question marks which is what I'm trying to fix.
I wanted to use backreferences in the Modify Action of a grabber like this
According to Regex Tutorial - Round Brackets for Grouping and Backreferences \1 should contain the backreference of the text that was matched in the search but when using it in WebEPG is it just replaced by the string "\1". I also tried $1 but that too doesn't work.
Any ideas?
I wanted to use backreferences in the Modify Action of a grabber like this
Code:
<Actions>
<Modify channel="*" field="#DESCRIPTION" search="\?(\w+)\?" action="Replace">"\1"</Modify>
</Actions>
Any ideas?
Sweden