Parsing groupings of strings (Python)

Posted by j00niner on Stack Overflow See other posts from Stack Overflow or by j00niner
Published on 2010-05-06T08:26:59Z Indexed on 2010/05/06 8:38 UTC
Read the original article Hit count: 100

Filed under:

I have a string that looks something like this:

[["Name1","ID1","DDY1", "CALL1", "WHEN1"], ["Name2","ID2","DDY2", "CALL2", "WHEN2"],...];

This string was taking from a website. Their can be any amount of groupings. How could I parse this string and print just the Name variables of each grouping?

© Stack Overflow or respective owner

Related posts about python