diff options
author | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2013-09-28 17:29:06 +0200 |
---|---|---|
committer | Matti Lehtimäki <matti.lehtimaki@gmail.com> | 2013-09-28 17:29:06 +0200 |
commit | 81de9f8c2e2c3223789ad1bed1f00d58c773d7b8 (patch) | |
tree | 64ea1ee1be68c425e26a800823e32e63f756b71a /epgfixer/regexp.conf | |
parent | 6e954ad800a4696b3818df08bf132a9535a5f03b (diff) | |
download | vdr-plugin-epgfixer-81de9f8c2e2c3223789ad1bed1f00d58c773d7b8.tar.gz vdr-plugin-epgfixer-81de9f8c2e2c3223789ad1bed1f00d58c773d7b8.tar.bz2 |
Update README and example regexp.conf for conditional regular expressions.
Diffstat (limited to 'epgfixer/regexp.conf')
-rw-r--r-- | epgfixer/regexp.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/epgfixer/regexp.conf b/epgfixer/regexp.conf index a7ef68c..5886428 100644 --- a/epgfixer/regexp.conf +++ b/epgfixer/regexp.conf @@ -19,5 +19,9 @@ # Matches 'foo' case-insensitively #description=m/foo/i +# Example of a conditional regexp +# regexp "s/foo/bar/" is applied to description only if title matches "foo" +#description?title~m/foo/=s/foo/bar/ + # Example of disabled regexp: #!title=m/^(?:Movie: |Document: )(?<title>.*)$/ |