Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pythonを使用して私書箱の可能な組み合わせの後に来る部分文字列を抽出する必要があります
例えば
私書箱88743
私書箱04049
私書箱304040
私書箱49293
私書箱2039a
結果:次のsubstrngsを抽出できるはずです
88743
4049(先行ゼロは削除されました)
304040
49293
2039a
部分文字列は英数字で、1〜10個の数字を含めることができます
助けてください!!
以下はそれを行う必要があります:
re.findall(r'P[.]?O[.]?\s*box\s+0*([0-9a-zA-Z]+)', s, re.I)
文字列はどこにsありますか。
s