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.
私はmongodbとRegexでいくつかの作業を行っています。
だから、私は実行しました:
{ "email": /@/ }
今私は言いたい:
{ "email": does not contain @ }
助けていただければ幸いです
{email: /^[^@]*$/}
{email: {$not: /@/}}