Hello.
Is it possiible with sublime to replace for example
print “Hello”
print “World”
print “!!!”
to
print(“Hello”)
print(“Wolrd”)
print("!!!")
in one step? I can do replace print " with print(". But I could not replace the " at the end.
Best regards
Marten