Visual Studio Code – Make multi line regex non greedy (=lazy)
I have a snippet of code like this: { a: { b: 1, c: 2, }, d: { e: 4, f: 5, }, } I need a regex which matches the two objects a and d seperately. First match: a:…
I have a snippet of code like this: { a: { b: 1, c: 2, }, d: { e: 4, f: 5, }, } I need a regex which matches the two objects a and d seperately. First match: a:…