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.
notepad ++では([\t\s\,])+、タブ、スペース、またはコンマに一致させることを意図したこのパターンは、改行(\r\nメモ帳)に一致します。どうしてこれなの?
([\t\s\,])+
\r\n
\sすべての空白文字に一致します。
\s
スペースはスペースに一致します。
どうしてこれなの?
\s空白文字にも一致するためです。