So I have a set of statements such as
if {return IF;}
int {return INT;}
for {return FOR;}
and I want it it to read like
if {return IF;} IF
int {return INT;} INT
for {return FOR;} FOR
This is because I need to copy all of these variables to another section of the code and I could do an easy text block if the page is formatted as such.
I figure the easiest way to do this would be with a find/replace regex. However while it easy to SELECT the things I want by saying [return .*}], I cant seem to figure out how I would be able to move it elsewhere.
Thank you for your help!