Sublime Forum

How to delete all printf(...);

#1

Hello,

I need to delete all the printf(…); regardless of what is written inside of them. I could use the find function, select all printf and replace them with //, but that is a cheap solution. Anyone knows how I can do this?

Many thanks,
Sartox

0 Likes

#2

After some twitter help found out that you must search for printf(.*); which deletes it all. I’ll leave this here just in case it helps someone out.

sartox

1 Like