How to remove a space between two characters or strings in notepad++

regex

Solution

Replace match of regular expression pattern `(?<=\()\s+(?=t)` with empty string.

If any alphanumeric character may occur after such space, then use pattern `(?<=\()\s+(?=[^\W_])`

Problem

Consider I have a string in quotations `"( the"` which occures in a huge body of text. I want to remove the space between non-alphanumeric `(` and aplphanumeric `t` characters

Original source

Related problems