I need some help on how can I replace a string in SQL Server using RegEx.
Here is my sample:
SELECT REPLACE('@[Testing, Testing](c7f6eb1a-f365-4b27-8b11-0a69b1b2c827) test', '/(?:\]\()\w{0,8}\w(?:\-)\w{0,4}\w(?:\-)\w{0,4}\w(?:\-)\w{0,4}\w(?:\-)\w{0,12}\w(?:\))/g', '')
I want to remove this ](c7f6eb1a-f365-4b27-8b11-0a69b1b2c827) using replace function of SQL Server.