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.
「m.john」、「m_john」、または「mjohn」のような単語の場合、どうすればそれらすべてに一致させることができますか?
/\w+/ を試してみましたが、明らかに「.」一致しません
ありがとう。
文字クラスを使用して、許可された文字のセットにさらに文字を追加できます。
/[\w.]+/
は_すでに と一致してい\wます。
_
\w
.とで文字クラスを使用できます_。その後、オプションにします。
.
/m[._]?john/
この特定の例では