As a last used regex, meaning it will try everything else and then if no match, just use this one. Is there a way to make a "catchall" type regex? What I am trying to do, I am trying to do something for global search and am looking to just create a release as long as its complete even if it doesn't match any other regex.
Sort of like a catchall. If it didnt match anything it will just use the actual subject for the release name.
Update:
Reading the regex guide I have tried to make a Collection Regex that is just:
/^./
Its not working, which if it did I would have been shocked. I read that . means to match anything.
TIA