I have in txt file lines like this:
(1, 'Peach', '["8","9"]'),
...
(31, 'Apple', '["8","9"]'),
(32, 'Orange', '["8","0"]'),
(33, 'Mango', '["8","0"]'),
...
(344, 'Melon', '["8","9"]'),
and I want them without numbers. Like this:
('Peach', '["8","9"]'),
...
('Apple', '["8","9"]'),
('Orange', '["8","0"]'),
('Mango', '["8","0"]'),
...
('Melon', '["8","9"]'),
What regex "replace with..." I should use ?
Thank you