C++ string parsing (python style) - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T01:11:58Zhttp://stackoverflow.com/feeds/question/536148http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/536148/c-string-parsing-python-style5C++ string parsing (python style)hasen j2009-02-11T09:49:23Z2009-11-27T21:49:23Z
<p>I love how in python I can do something like:</p>
<pre><code>points = []
for line in open("data.txt"):
a,b,c = map(float, line.split(','))
points += [(a,b,c)]
</code></pre>
<p>Basically it's reading a list of lines where each one represents a point in 3D space, the point is represented as three numbers separated by commas</p>
<p>How can this be done in C++ without too much headache?</p>
<p>Performance is not very important, this parsing only happens one time, so simplicity is more important.</p>
<p>P.S. I know it sounds like a newbie question, but believe me I've written a lexer in D (pretty much like C++) which involves reading some text char by char and recognizing tokens,<br />
it's just that, coming back to C++ after a long period of python, just makes me not wanna waste my time on such things.</p>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/536164#5361641Answer by Timo Geusch for C++ string parsing (python style)Timo Geusch2009-02-11T09:55:27Z2009-02-11T09:55:27Z<p>You could read the file from a std::iostream line by line, put each line into a std::string and then use boost::tokenizer to split it. It won't be quite as elegant/short as the python one but a lot easier than reading things in a character at a time...</p>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/536177#53617713Answer by j_random_hacker for C++ string parsing (python style)j_random_hacker2009-02-11T09:59:21Z2009-02-11T13:51:26Z<pre><code>#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <algorithm> // For replace()
using namespace std;
struct Point {
double a, b, c;
};
int main(int argc, char **argv) {
vector<Point> points;
ifstream f("data.txt");
string str;
while (getline(f, str)) {
replace(str.begin(), str.end(), ',', ' ');
istringstream iss(str);
Point p;
iss >> p.a >> p.b >> p.c;
points.push_back(p);
}
// Do something with points...
return 0;
}
</code></pre>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/536224#5362248Answer by Benoît for C++ string parsing (python style)Benoît2009-02-11T10:19:55Z2009-02-11T10:19:55Z<p>This answer is based on the previous answer by j_random_hacker and makes use of Boost Spirit.</p>
<pre><code>#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <boost/spirit.hpp>
using namespace std;
using namespace boost;
using namespace boost::spirit;
struct Point {
double a, b, c;
};
int main(int argc, char **argv) {
vector<Point> points;
ifstream f("data.txt");
string str;
while (getline(f, str)) {
Point p;
rule<> point_p =
double_p[assign_a(p.a)] >> ','
>> double_p[assign_a(p.b)] >> ','
>> double_p[assign_a(p.c)] ;
parse( str, point_p, space_p );
points.push_back(p);
}
// Do something with points...
return 0;
}
</code></pre>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/536265#53626519Answer by klew for C++ string parsing (python style)klew2009-02-11T10:33:17Z2009-02-14T03:57:46Z<p>I`d do something like this:</p>
<pre><code>ifstream f("data.txt");
string str;
while (getline(f, str)) {
Point p;
sscanf(str.c_str(), "%f, %f, %f\n", &p.x, &p.y, &p.z);
points.push_back(p);
}
</code></pre>
<p>x,y,z must be floats.</p>
<p>And include:</p>
<pre><code>#include <iostream>
#include <fstream>
</code></pre>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/536431#53643115Answer by Konrad Rudolph for C++ string parsing (python style)Konrad Rudolph2009-02-11T11:45:35Z2009-02-11T11:45:35Z<p>All these good examples aside, in C++ you would normally override the <code>operator >></code> for your point type to achieve something like this:</p>
<pre><code>point p;
while (file >> p)
points.push_back(p);
</code></pre>
<p>or even:</p>
<pre><code>copy(
istream_iterator<point>(file),
istream_iterator<point>(),
back_inserter(points)
);
</code></pre>
<p>The relevant implementation of the operator could look very much like the code by j_random_hacker.</p>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/537473#5374733Answer by Éric Malenfant for C++ string parsing (python style)Éric Malenfant2009-02-11T16:01:43Z2009-02-11T16:31:40Z<p>Fun with Boost.Tuples:</p>
<pre><code>#include <boost/tuple/tuple_io.hpp>
#include <vector>
#include <fstream>
#include <iostream>
#include <algorithm>
int main() {
using namespace boost::tuples;
typedef boost::tuple<float,float,float> PointT;
std::ifstream f("input.txt");
f >> set_open(' ') >> set_close(' ') >> set_delimiter(',');
std::vector<PointT> v;
std::copy(std::istream_iterator<PointT>(f), std::istream_iterator<PointT>(),
std::back_inserter(v)
);
std::copy(v.begin(), v.end(),
std::ostream_iterator<PointT>(std::cout)
);
return 0;
}
</code></pre>
<p>Note that this is not strictly equivalent to the Python code in your question because the tuples don't have to be on separate lines. For example, this:</p>
<pre><code>1,2,3 4,5,6
</code></pre>
<p>will give the same output than:</p>
<pre><code>1,2,3
4,5,6
</code></pre>
<p>It's up to you to decide if that's a bug or a feature :)</p>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/538747#5387472Answer by Sanjaya R for C++ string parsing (python style)Sanjaya R2009-02-11T20:58:00Z2009-02-11T20:58:00Z<p>Its nowhere near as terse, and of course I didn't compile this.</p>
<pre><code>float atof_s( std::string & s ) { return atoi( s.c_str() ); }
{
ifstream f("data.txt")
string str;
vector<vector<float>> data;
while( getline( f, str ) ) {
vector<float> v;
boost::algorithm::split_iterator<string::iterator> e;
std::transform(
boost::algorithm::make_split_iterator( str, token_finder( is_any_of( "," ) ) ),
e, v.begin(), atof_s );
v.resize(3); // only grab the first 3
data.push_back(v);
}
</code></pre>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/768898#7688982Answer by Beh Tou Cheh for C++ string parsing (python style)Beh Tou Cheh2009-04-20T15:57:05Z2009-11-27T21:49:23Z<p>Using the <a href="http://www.partow.net/programming/strtk/index.html" rel="nofollow">Strtk</a> library and lambdas you can do the following:</p>
<pre><code>{
std::deque<point> points;
point p;
strtk::for_each_line("data.txt",
[](const std::string& str)
{
strtk::parse(str,",",p.x,p.y,p.z);
points.push_back(p);
});
}
</code></pre>
http://stackoverflow.com/questions/536148/c-string-parsing-python-style/1621028#16210281Answer by dbr for C++ string parsing (python style)dbr2009-10-25T14:19:26Z2009-10-25T14:19:26Z<p>One of Sony Picture Imagework's open-source projects is <a href="http://code.google.com/p/pystring/" rel="nofollow">Pystring</a>, which should make for a mostly direct translation of the string-splitting parts:</p>
<blockquote>
<p>Pystring is a collection of C++ functions which match the interface and behavior of python’s string class methods using std::string. Implemented in C++, it does not require or make use of a python interpreter. It provides convenience and familiarity for common string operations not included in the standard C++ library</p>
</blockquote>
<p>There are <a href="http://code.google.com/p/pystring/wiki/Examples" rel="nofollow">a few examples</a>, and <a href="http://code.google.com/p/pystring/wiki/Documentation" rel="nofollow">some documentation</a></p>