Aikouka
Lifer
I'm a pretty big fan of using regular expressions. Frankly, I just find them really fun to write; however, there's one issue that I've never been able to solve, and my Google Fu has failed me in finding a solution. The issue is that I cannot use parenthesis in the replacement field in Visual Studio 2010, and yes, I am escaping them (i.e. "\("). Whenever I do this, VS refuses to execute the replace until I replace the parenthesis, which I've either done using tagged groups (i.e. "{😛s}" and "{😛e}" in the search field and using the respective \# in the replace field) or used things like carets ('<' and '>') and replaced them later. I've also had mixed success with using the escaped parenthesis in the search field, but it usually works.
So, I'm wondering... am I missing something? I can use any other standard regex character as long as I escape it except for the (open or close) parenthesis.
So, I'm wondering... am I missing something? I can use any other standard regex character as long as I escape it except for the (open or close) parenthesis.