* Paul Smith <paul / pollyandpaul.co.uk> (2009-09-29) schrieb:

>> ields = data.split(",")
>> ash = fields[0]
>> crID = fields[1]

BTW, you could write this as:

hash, ocrID = *data.split(",")

or

hash, ocrID, *ignored = *data.split(",")

if you want to ignore everything behind a second comma, or

hash, ocrID = *data.split(",", 2)

if you want to include a second comma and everything behind it into the
ocrID string.

mfg,           simon .... which color is the green bill? blue!