I am quite new to python and regex and I was wondering how to extract the first part of an email address upto the domain name. So for example if:
JavaScript
x
2
1
s='xjhgjg876896@domain.com'
2
I would like the regex result to be (taking into account all “sorts” of email ids i.e including numbers etc..):
JavaScript
1
2
1
xjhgjg876896
2
I get the idea of regex – as in I know I need to scan till “@” and then store the result – but I am unsure how to implement this in python.
Thanks for your time.
Advertisement
Answer
You should just use the split
method of strings:
JavaScript
1
2
1
s.split("@")[0]
2