I got a very long file. It has 1000 lines of SQL code. Each line begins with a line number.
14 PROCEDURE sp_processRuleset(pop_id IN NUMBER);
15
16
17 PROCEDURE sp_commit;
18
19
20
21
22 gv_context_ruleSet VARCHAR2(32767) := NULL;
23
I want to remove only line numbers using the NotePad ++ Find + Replace function. Is there any regex to accomplish this?
source
share