I'm looking for fast and efficent way to split code and prapare it for press. I'm working for coder magazine, and it's always a huge problem to prepare code for press, 'cause space in one column is limited. Now I'm doing it manually and it is very tiresome. Let me give you an example. This is a code I'm working on right now (already formatted/spitted in my own style), it's for Android:
private void GetFiles() {
listBox1.Items.Clear();
var storeFile = IsolatedStorageFile.
GetUserStoreForApplication();
string fileString = System.IO.Path.GetFileName("*");
string[] files = storeFile.GetFileNames("*");
for (int i = 0; i < storeFile.GetFileNames("/" +
fileString).Length; i++) {
String fileName = storeFile.GetFileNames(fileString)[i];
String ext = fileName.Substring(fileName.Length - 3);
if (ext == "png") listBox1.Items.Add(fileName);
} }
Note that
var storeFile = IsolatedStorageFile.
GetUserStoreForApplication();
is one line. It's just too long for press column, that's why I split by the nearest logical break (here - point) and indent the second part of the line with 4 spaces (inline is always indented by 2 spaces). I know, it's not the best way, it's hard to understand. That's why I'm looking an authoritative answer from the wide range of software developers. I have to work not only with C++ code, but with Assembler, JavaScript, Ruby and Python. The last one is a separate problem - it's indent-dependive, so I have to be especially carefull with indents.
So, the question is: which is the best way to format code in limited space of the magazine? Which way do you prefer? Please, suggest your own ideas. Every answer is highly appreciated.
UPD: Here's the way how it looks in magazine now:
. It may help you to uderstand the problem. Too long lines are splited by '\' and the last part of line is indented. Not too obvious, isn't it? =(