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.
長さが 3 の倍数の文字列の正規表現は何ですか? {} は、min/min-max の明確な値しか許可しないため、私には機能しません。
これはあなたのニーズに合うはずです:
(?:\w{3})*
\w
[a-zA-Z0-9_]
(?:X)
(?:X{3})