string 1
test ()
to replace with->
print ("test ()")
string 2
test (a, b)
to be replaced by->
print ("test (a, b)", a, b)
how to write matching and replacing regularities, can they be implemented with regular substitutions?
^(test\((.*)\))$
->
print\("\1"\, \2\)
if I write the string 1 like this, I can"t replace..
correctly.