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.
一連の可能な文字の一致について正規表現をテストする必要があります。
フィールド 'TEST' は、'TEST1'、'TEST2'、'TEST3'...'TEST10' の値を取ることができます。
import re pattern = 'TEST[0123456789] field = 'TEST1' match = re.search(match,field)
[10] の値をパターン マッチングで指定するにはどうすればよいですか?