I need to change my coding style of putting opening braces in same line to new line. I need to find and replace the (space){ with (newline){. I heard using regular expression find and replace, its pretty simple.
Could anyone help me on this?
|
I need to change my coding style of putting opening braces in same line to new line. I need to find and replace the (space){ with (newline){. I heard using regular expression find and replace, its pretty simple. Could anyone help me on this?
| |||
|
feedback
|
|
You could try the following:
control+q is needed to quote the return key. There’s no visual feedback for typing control+q return, so the only visible character in the replace box is the opening curly brace:
Although this answers your question, there’s (at least!) one problem: it won’t indent the opening curly brace, so something like
is converted to
The menu item Edit > Format > Re-Indent will place the opening curly braces in the correct indentation tab but there might be non-desired side effects to your code style. Edit: as commented in the other answer, you might want a regular expression that matches an arbitrary number of whitespaces surrounding the curly brace, e.g. \s*{\s*$ | |||||||||||||
feedback
|
|
search for this Your editor needs to support regular expressions in both search and replace fields. If you can't use the \n in the replace dialog because it takes the string literally, try a option-enter followed by
The best way however would be to reformat your code where you choose to have your Another way is to use a code beautifier, you can google these online and some allow to change settings like that. | |||||||||||||||||
feedback
|
|
i searched a while to find out, that you have to enable the find options for regular expressions first on the small magnifier glass in the left side of the find-input field ;) | |||
|
feedback
|
\n) – Aurum Aquila Feb 22 '11 at 13:36{occurs inside a string-, or char-literal. Most IDE's have some sort of format-templates you can adjust and then re-factor/re-format your code base, perhaps Xcode has that as well? It's tricky to go search-and-replace manually. – Bart Kiers Feb 22 '11 at 13:42