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 で文字列の数字を一致させるのに問題があります。明らかに一致しているはずなのに、一致すらしていない[0-9] [\d]か、0単独で。私の見落としはどこにありますか?
[0-9]
[\d]
0
import re file_without_extension = "/test/folder/something/file_0" if re.match("[\d]+$", file_without_extension): print "file matched!"
re.match の代わりに re.search を使用します。