vote up 1 vote down star
1

Lets say we have this string: [18] email@email.com:pwd:

email@email.com is the email and pwd is the password.

Also, lets say we have this variable with a value

f = "[18] email@email.com:pwd:"

I would like to know if there is a way to make two other variables named var1 and var2, where the var1 variable will take the exact email info from variable f and var2 the exact password info from var2.

The result after running the app should be like:

var1 = "email@email.com"

and

var2 = "pwd"
flag

4 Answers

vote up 10 vote down
>>> var1, var2, _ = "[18] email@email.com:pwd:"[5:].split(":")
>>> var1, var2
('email@email.com', 'pwd')

Or if the "[18]" is not a fixed prefix:

>>> var1, var2, _ = "[18] email@email.com:pwd:".split("] ")[1].split(":")
>>> var1, var2
('email@email.com', 'pwd')
link|flag
Nice, I was going to suggest two splits. What's the [4:] syntax called? – Bill the Lizard Jan 12 at 18:18
@Bill Slice syntax. – Aaron Maenpaa Jan 12 at 18:22
Thanks. After Googling that term it seems like it's rather fundamental in Python. I guess I need to add "Learning Python" to my stack of books to read. – Bill the Lizard Jan 12 at 18:25
vote up 7 vote down
import re
var1, var2 = re.findall(r'\s(.*?):(.*):', f)[0]

If findall()[0] feels like two steps forward and one back:

var1, var2 = re.search(r'\s(.*?):(.*):', f).groups()
link|flag
+1. A good, general solution. – Brian Clapper Jan 12 at 18:28
May also want to add in match checking. For instance, if the re.search returns None, then you'll get a nice little error for trying the groups() method on a NoneType object. All in all, a good solution though PEZ. +1 – Evan Fosmark Jan 12 at 21:26
re.search(r'\s([^:\s]+):([^:\n]*):') – J.F. Sebastian Jan 14 at 13:51
Thanks, Evan. I think also the findall() needs a check for length before you try to index it if the data isn't "cleaned" beforehand. – PEZ Jan 14 at 15:30
@J.F. It depends on the application and the data. You're expression will extract "mail.com" as the address if the string is "[18] email@e mail.com:pwd:". It might, and might not, be what's requested. We don't know. I prefer to make weaker assumptions on the data and stronger on the format. – PEZ Jan 14 at 15:33
show 2 more comments
vote up 5 vote down
var1, var2 = re.split(r'[ :]', f)[1:3]
link|flag
vote up 1 vote down

To split on the first colon ":", you can do:

# keep all after last space
f1= f.rpartition(" ")[2]
var1, _, var2= f1.partition(":")
link|flag
+1 for rpartition. I didn't know about it. – PEZ Jan 14 at 15:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.