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.
正規表現.*{n}は任意の 1 文字に n 回一致しますが、任意の 1 つの部分文字列にn 回一致する必要があります。
.*{n}
それ、どうやったら出来るの?
試す
/(\w+)\1{n-1}/
例:
"abcbcbca".match(/(\w+)\1{2}/)bc3回繰り返されていることを知りたい場合。
"abcbcbca".match(/(\w+)\1{2}/)
bc
特定の文字列をn回繰り返して一致させようとしている場合は、単に(string){n}.
(string){n}