-
Hi, can you give me an example on how to use the Title clean up regex on AT, because i tried to use different "formats" and i can't make it work. For example, if i want to remove -exclude- the (Quick Hitter) part from title while searching, what the regex should be? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello, the regex to match To match multiple you can use the or You can test your regexes at: https://regex101.com/ before running 1T. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the answer. So i don't need to use any regular expression syntax like Tried it and it works. |
Beta Was this translation helpful? Give feedback.
Hello, the regex to match
(Quick Hitter)
would be\(Quick Hitter\)
(in Regex()
have special meaning, so\
converts them into regular()
).To match multiple you can use the or
|
character. Example:(Extended Mix)|(Clean Mix)
will matchExtended Mix
orClean Mix
.You can test your regexes at: https://regex101.com/ before running 1T.