Howto parse a string using a char in python

John Gordon gordon at panix.com
Fri Feb 15 18:11:52 EST 2013


In <511ebf0c$0$21334$9a6e19ea at unlimited.newshosting.com> "Steve Goodwin" <sgoodwin at cfl.rr.com> writes:

> I am looking for the python2.7 function(s) to parse a string from a colon 
> character ":"

> Sounds simple enough.

> For example, a string like "123456:789".  I just need the "123456" 
> substring.(left of the :)

> I have looked at regular expressions and string functions, so far no luck. 
> Custom function required?

Use the split() string function.

-- 
John Gordon                   A is for Amy, who fell down the stairs
gordon at panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"




More information about the Python-list mailing list