I know that there are tons of posts related to reading files in C+, but I still couldn't figure out how to utilize it for my specific purpose.
I have a file as below, the first two lines specify a variable number of regions, and from the 3rd line onward are some address of files. So, I want to read the first two files and save each field in two integer arrays: from[] and to[]
for example, in this case, I want to fill the two integer arrays with: from[0]=48 from[1]=68 from[2]=93 and to[0]=49 to[1]=70 to[2]=100 the second line will also be processed the same way, and the third line onward, the string should be assigned to an array of strings.
48:49 68:70 93:100
22:33 34:47 50:67 71:92
tr429a.frank/tr429a.reg1.0.pdb
tr429a.frank/tr429a.reg1.1.pdb
tr429a.frank/tr429a.reg1.2.pdb
tr429a.frank/tr429a.reg1.3.pdb
tr429a.frank/tr429a.reg1.4.pdb
tr429a.frank/tr429a.reg1.5.pdb
tr429a.frank/tr429a.reg1.6.pdb
tr429a.frank/tr429a.reg1.7.pdb
Any help is much appreciated!
If those are variable numbers of "regions" and variable numbers of file name strings you could make your life easier by using vectors instead of arrays.
And in general, I wouldn't do something like this in C++, but rather Python, Ruby, etc. C++ is really not made for such tasks... Anyway, here is some quick and dirty code that should do the job. You can clean it up by refactoring...
// Printing out the contents to make sure it worked