I have the data in the following format;
(1,NULL,NULL,'Chief p','[email protected]','new',4,'1ef7,0,2),(1,NULL,NULL,'Chief Pollster','[email protected]','new',4,'1ef7,0,2),(1,NULL,NULL,'Chief Pollster','[email protected]','new',4,'1ef7,0,2),(1,NULL,NULL,'Chief Pollster','[email protected]','new',4,'1ef7,0,2),
I am trying to achieve the following:
(1,NULL,NULL,'Chief p','[email protected]','new',4,'1ef7,0,2),
(1,NULL,NULL,'Chief Pollster','[email protected]','new',4,'1ef7,0,2),
(1,NULL,NULL,'Chief Pollster','[email protected]','new',4,'1ef7,0,2),
(1,NULL,NULL,'Chief Pollster','[email protected]','new',4,'1ef7,0,2),
So I tried the following regex
find ),\s*
and replace it with ),\n
But it says
The regex contains mismatched '(' and ')'
What am I doing wrong?