![]() |
2010-05-31
, 18:36
|
|
Posts: 1,559 |
Thanked: 1,786 times |
Joined on Oct 2009
@ Boston
|
#2
|
![]() |
2010-05-31
, 18:41
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#3
|
Hi,
Im just starting development in PyQT, and I have quite a basic thing i'm trying to do which I would find quite easy using something like PHP, but i'm struggling with python.
Not sure if im posting in correct place.. but
Basically I have a string like the following:
name:Example;
link:www.google.com;
datetime:20100209
|
name:Example2;
link:www.yahoo.co.uk;
datetime:20090808
So each result is seperated by a pipe (|) and key value pairs are seperated by a semi colon, then by a colon.
I want the ability to put these in to some kind of array so I can create a results page with lets say the following:
Result 1
Name: Example
Link: www.google.com
Datetime: 20100209
Result 2
Name: Example2
Link: www.yahoo.co.uk
Datetime: 20090808
Could someone help me with this snippet?
Thanks
for result in data.split("|"): for line in result.split("\n"): idx = line.find(":") key = line[:idx] value = line[idx + 1:] print "%s: %s" % (key, value)
The Following User Says Thank You to pycage For This Useful Post: | ||
![]() |
2010-05-31
, 18:42
|
Posts: 272 |
Thanked: 52 times |
Joined on Jan 2010
|
#4
|
for eachResult in resultsArr : eachResultCount=eachResultCount+1 lineArr=self.splitSearchResults(eachResult,';') # Loop through each of the lines in the result for eachLine in lineArr : eachLineCount=eachLineCount+1 eachAttribute=self.splitSearchResults(eachLine,':') # Loops thruogh the key and values for this line for value in eachAttribute : eachAttributeCount=eachAttributeCount+1
![]() |
2010-05-31
, 18:46
|
Posts: 272 |
Thanked: 52 times |
Joined on Jan 2010
|
#5
|
Something like this...
Code:for result in data.split("|"): for line in result.split("\n"): idx = line.find(":") key = line[:idx] value = line[idx + 1:] print "%s: %s" % (key, value)
![]() |
2010-05-31
, 18:48
|
|
Posts: 1,559 |
Thanked: 1,786 times |
Joined on Oct 2009
@ Boston
|
#6
|
This looks like it does the job perfectly... although I'm not exactly sure what its doing fully.
Hopefully this kinda thing will come more naturally as I get better, this is only my first attempt!
Thanks
![]() |
2010-05-31
, 18:48
|
Posts: 272 |
Thanked: 52 times |
Joined on Jan 2010
|
#7
|
![]() |
2010-05-31
, 18:49
|
Posts: 272 |
Thanked: 52 times |
Joined on Jan 2010
|
#8
|
![]() |
2010-05-31
, 19:40
|
|
Posts: 2,853 |
Thanked: 968 times |
Joined on Nov 2005
|
#9
|
Im just starting development in PyQT, and I have quite a basic thing i'm trying to do which I would find quite easy using something like PHP, but i'm struggling with python.
Not sure if im posting in correct place.. but
Basically I have a string like the following:
name:Example;
link:www.google.com;
datetime:20100209
|
name:Example2;
link:www.yahoo.co.uk;
datetime:20090808
So each result is seperated by a pipe (|) and key value pairs are seperated by a semi colon, then by a colon.
I want the ability to put these in to some kind of array so I can create a results page with lets say the following:
Result 1
Name: Example
Link: www.google.com
Datetime: 20100209
Result 2
Name: Example2
Link: www.yahoo.co.uk
Datetime: 20090808
Could someone help me with this snippet?
Thanks