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.
x と y がアルファベットの任意の文字である "(xy)" のインスタンスを選択するための Javascript/jQuery 正規表現は何でしょうか? 例 : (en)、(fr)、(es)。
/\([a-z][a-z]\)/
また
/\([a-z]{2}\)/
のようなものになります
"\([a-z]{2}\)"