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 つおきのコンマを置き換えるにはどうすればよいですか?
resultContent = resultContent.replace(/(,[^,]*),/g, '$1|');
resultContent = resultContent.replace(/((?:,[^,]*){2}),/g, '$1|');