我需要根據Python3中的正則表達式來識別任何字符串中的子字符串。python3中的正則表達式子串
例如,採取以下字符串:
It sent a notice of delivery of goods: UserName1
Sent a notice of delivery of the goods: User is not found, UserName2
It sent a notice of receipt of the goods: UserName1
It sent a notice of receipt of the goods: User is not found, UserName2
我想冒號後得到的文本
結果:
UserName1
User is not found, UserName2
UserName1
User is not found, UserName2
我要求幫助寫一個正則表達式。 感謝您的幫助!
你沒有任何tryied。我建議你先看看 - > docs.python.org/2/library/re.html。然後嘗試構建一個正則表達式。如果你遇到正則表達式的問題,向我們展示你的正則表達式,社區將幫助你。下面是一個示例python正則表達式的工作原理:https://developers.google.com/edu/python/regular-expressions –
爲什麼不str.split(':')並完全避免了正則表達式 – Ludisposed
我寧願與[ str.find](https://docs.python.org/3.6/library/stdtypes.html#str.find)和字符串切片,不需要分割每個':' –