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.
文字列 S が与えられた場合、文字列に次のパターンが含まれているかどうかを確認する最も簡単な方法は何ですか:
AnyString:AnyString.SUB
Sub = Exe、Wav、Mp3、または Bmp。
例:
foo:bar.Exe a:b.Bmp cde:uiweiuew.Mp3 wuyuewy27626:28732.Wav
有効な文字列です。
次の正規表現を使用できます。
^[^:]+:[^.]+\.(?:Exe|Wav|Mp3|Bmp)$