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.
6、8、または 10 文字のサイズの英数字文字列を見つけるためのより短い方法はありますか?
^([[:alnum]]{6}|[[:alnum]]{8}|[[:alnum]]{10})$
パターンを利用してください。
^([[:alnum:]]{2}){3,5}$
何かのようなもの:
([a-zA-Z0-9]{2}){3,5}