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.
次の要件を満たす正規表現を作成するにはどうすればよいですか: 1) 7 桁の 1 つのシーケンスでなければならない 2) EDD または FINAL ワードがどこかにある
どうですか
^(?=\d*(EDD|FINAL)\d*$)(?=(\D*\d\D*){7}$)
これでうまくいくはずです:
#[0-9]{7}(EDD|FINAL)?# //EDD OR FINAL are optional
また
#[0-9]{7}(EDD|FINAL)+# //if EDD OR FINAL must be there