This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients bo qu, ezio.melotti, mrabarnett, serhiy.storchaka
Date 2017-04-01.07:44:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1491032656.36.0.284676378832.issue29959@psf.upfronthosting.co.za>
In-reply-to
Content
re.match() checks if the beginning of the string matches the regular expression pattern. Use re.search() if you want to find the match not at the beginning of the string.

https://docs.python.org/3/library/re.html#re.match
https://docs.python.org/3/library/re.html#re.search
History
Date User Action Args
2017-04-01 07:44:16serhiy.storchakasetrecipients: + serhiy.storchaka, ezio.melotti, mrabarnett, bo qu
2017-04-01 07:44:16serhiy.storchakasetmessageid: <1491032656.36.0.284676378832.issue29959@psf.upfronthosting.co.za>
2017-04-01 07:44:16serhiy.storchakalinkissue29959 messages
2017-04-01 07:44:16serhiy.storchakacreate