I desire to collapse any combination of TWO OR MORE non-alphanumberic characters into a single "."
I already have one filter before this one, so that the only 3 such characters I need to worry about are "_", "-", and "."
This is what I came up with
OutNameNoExt:= RegExReplace(OutNameNoExt,"[\._-]+" , ".")
Sadly, it fails because I have only read the first 3 chapters of my regex book.
I would like to clean up a string such as this
98788._Interview__with_a_booger..876789_-_.avi
so that it would read
98788.Interview.with.a.booger.876789.avi
I also believe I would have to use a totally new operator so that the replacement happens with all occurrences and not just the first one, right?
Ready for the knowledge to flow!