Fixed: Regex to recognize Basic Dolby Digital

updated the regex to fix the recognition of Basic Dolby Digital to help with incorrect matching of some Custom Formats.
pull/649/head
nuxencs 2 years ago
parent 23b881d3c6
commit d8d0020e31

@ -36,7 +36,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -46,7 +46,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -46,7 +46,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -36,7 +36,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -45,7 +45,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\bDD(\\b|\\d)|(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -45,7 +45,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\bDD(\\b|\\d)|(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -46,7 +46,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\bDD(\\b|\\d)|(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -27,7 +27,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\bDD(\\b|\\d)|(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -54,7 +54,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "\\bDD(\\b|\\d)|(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -54,7 +54,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -54,7 +54,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -46,7 +46,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

@ -55,7 +55,7 @@
"negate": true, "negate": true,
"required": true, "required": true,
"fields": { "fields": {
"value": "(?<!e)ac3" "value": "\\bDD[^a-z+]|(?<!e)ac3"
} }
}, },
{ {

Loading…
Cancel
Save