How would parse out a pipe delimited string in Python 3.0? My application is reading various barcodes in a random fashion. The barcodes are as below:
var = '07|415674|88881234564|3326'
I need to evaluate the length of each parsed variable and determine the one barcode I'm looking for.
Thanks for you help! TC