C++ string parsing (python style) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:11:58Z http://stackoverflow.com/feeds/question/536148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/536148/c-string-parsing-python-style 5 C++ string parsing (python style) hasen j 2009-02-11T09:49:23Z 2009-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#536164 1 Answer by Timo Geusch for C++ string parsing (python style) Timo Geusch 2009-02-11T09:55:27Z 2009-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#536177 13 Answer by j_random_hacker for C++ string parsing (python style) j_random_hacker 2009-02-11T09:59:21Z 2009-02-11T13:51:26Z <pre><code>#include &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;sstream&gt; #include &lt;string&gt; #include &lt;vector&gt; #include &lt;algorithm&gt; // For replace() using namespace std; struct Point { double a, b, c; }; int main(int argc, char **argv) { vector&lt;Point&gt; points; ifstream f("data.txt"); string str; while (getline(f, str)) { replace(str.begin(), str.end(), ',', ' '); istringstream iss(str); Point p; iss &gt;&gt; p.a &gt;&gt; p.b &gt;&gt; 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#536224 8 Answer by Benoît for C++ string parsing (python style) Benoît 2009-02-11T10:19:55Z 2009-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 &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;sstream&gt; #include &lt;string&gt; #include &lt;boost/spirit.hpp&gt; using namespace std; using namespace boost; using namespace boost::spirit; struct Point { double a, b, c; }; int main(int argc, char **argv) { vector&lt;Point&gt; points; ifstream f("data.txt"); string str; while (getline(f, str)) { Point p; rule&lt;&gt; point_p = double_p[assign_a(p.a)] &gt;&gt; ',' &gt;&gt; double_p[assign_a(p.b)] &gt;&gt; ',' &gt;&gt; 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#536265 19 Answer by klew for C++ string parsing (python style) klew 2009-02-11T10:33:17Z 2009-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", &amp;p.x, &amp;p.y, &amp;p.z); points.push_back(p); } </code></pre> <p>x,y,z must be floats.</p> <p>And include:</p> <pre><code>#include &lt;iostream&gt; #include &lt;fstream&gt; </code></pre> http://stackoverflow.com/questions/536148/c-string-parsing-python-style/536431#536431 15 Answer by Konrad Rudolph for C++ string parsing (python style) Konrad Rudolph 2009-02-11T11:45:35Z 2009-02-11T11:45:35Z <p>All these good examples aside, in C++ you would normally override the <code>operator &gt;&gt;</code> for your point type to achieve something like this:</p> <pre><code>point p; while (file &gt;&gt; p) points.push_back(p); </code></pre> <p>or even:</p> <pre><code>copy( istream_iterator&lt;point&gt;(file), istream_iterator&lt;point&gt;(), 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#537473 3 Answer by Éric Malenfant for C++ string parsing (python style) Éric Malenfant 2009-02-11T16:01:43Z 2009-02-11T16:31:40Z <p>Fun with Boost.Tuples:</p> <pre><code>#include &lt;boost/tuple/tuple_io.hpp&gt; #include &lt;vector&gt; #include &lt;fstream&gt; #include &lt;iostream&gt; #include &lt;algorithm&gt; int main() { using namespace boost::tuples; typedef boost::tuple&lt;float,float,float&gt; PointT; std::ifstream f("input.txt"); f &gt;&gt; set_open(' ') &gt;&gt; set_close(' ') &gt;&gt; set_delimiter(','); std::vector&lt;PointT&gt; v; std::copy(std::istream_iterator&lt;PointT&gt;(f), std::istream_iterator&lt;PointT&gt;(), std::back_inserter(v) ); std::copy(v.begin(), v.end(), std::ostream_iterator&lt;PointT&gt;(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#538747 2 Answer by Sanjaya R for C++ string parsing (python style) Sanjaya R 2009-02-11T20:58:00Z 2009-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 &amp; s ) { return atoi( s.c_str() ); } { ifstream f("data.txt") string str; vector&lt;vector&lt;float&gt;&gt; data; while( getline( f, str ) ) { vector&lt;float&gt; v; boost::algorithm::split_iterator&lt;string::iterator&gt; 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#768898 2 Answer by Beh Tou Cheh for C++ string parsing (python style) Beh Tou Cheh 2009-04-20T15:57:05Z 2009-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&lt;point&gt; points; point p; strtk::for_each_line("data.txt", [](const std::string&amp; 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#1621028 1 Answer by dbr for C++ string parsing (python style) dbr 2009-10-25T14:19:26Z 2009-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>