Câu trả lời:
Bạn có thể làm điều đó với mã sau đây.
db.users.findOne({"username" : {$regex : ".*son.*"}});
db.users.findOne({"username" : {$regex : "son"}});
Vì vỏ Mongo hỗ trợ regex, điều đó hoàn toàn có thể.
db.users.findOne({"username" : /.*son.*/});
Nếu chúng tôi muốn truy vấn không phân biệt chữ hoa chữ thường, chúng tôi có thể sử dụng tùy chọn "i", như hiển thị bên dưới:
db.users.findOne({"username" : /.*son.*/i});
Xem: http://www.mongodb.org/display/DOCS/Advified+Queries#AdvifiedQueries-RegularExpressions
db.users.findOne({"username" : /.*son.*/});
cũng có thể là quá mức cần thiết và regex có thể đơn giản là/son/
{ username: /son/ }
https://docs.mongodb.com/manual/reference/sql-comparison/
http://php.net/manual/en/mongo.sqltomongo.php
MySQL
SELECT * FROM users WHERE username LIKE "%Son%"
MongoDB
db.users.find({username:/Son/})
Kể từ phiên bản 2.4, bạn có thể tạo một chỉ mục văn bản trên (các) trường để tìm kiếm và sử dụng toán tử $ text để truy vấn.
Đầu tiên, tạo chỉ mục:
db.users.createIndex( { "username": "text" } )
Sau đó, để tìm kiếm:
db.users.find( { $text: { $search: "son" } } )
Điểm chuẩn (~ 150K tài liệu):
Ghi chú:
db.collection.createIndex( { "$**": "text" } )
.Vì đây là một trong những lần truy cập đầu tiên trong các công cụ tìm kiếm và dường như không có cách nào ở trên hoạt động cho MongoDB 3.x, đây là một tìm kiếm regex hoạt động:
db.users.find( { 'name' : { '$regex' : yourvalue, '$options' : 'i' } } )
Không cần phải tạo và thêm chỉ mục hoặc như nhau.
Đây là những gì bạn phải làm nếu bạn đang kết nối MongoDB thông qua Python
db.users.find({"username": {'$regex' : '.*' + 'Son' + '.*'}})
bạn cũng có thể sử dụng tên biến thay vì 'Son' và do đó nối chuỗi.
.*${value}.*
}
Cách đơn giản nhất để hoàn thành nhiệm vụ này
Nếu bạn muốn truy vấn phân biệt chữ hoa chữ thường
db.getCollection("users").find({'username':/Son/})
Nếu bạn muốn truy vấn không phân biệt chữ hoa chữ thường
db.getCollection("users").find({'username':/Son/i})
Cái này nên làm
db.users.find({ username: { $in: [ /son/i ] } });
Đây i
chỉ là để ngăn chặn các trường hợp khớp các chữ cái đơn lẻ.
Bạn có thể kiểm tra tài liệu $ regex trên tài liệu MongoDB. Đây là một liên kết: https://docs.mongodb.com/manual/reference/operator/query/regex/
Cách bỏ qua các thẻ HTML trong trận đấu RegExp:
var text = '<p>The <b>tiger</b> (<i>Panthera tigris</i>) is the largest <a href="https://stackoverflow.com/wiki/Felidae" title="Felidae">cat</a> <a href="https://stackoverflow.com/wiki/Species" title="Species">species</a>, most recognizable for its pattern of dark vertical stripes on reddish-orange fur with a lighter underside. The species is classified in the genus <i><a href="https://stackoverflow.com/wiki/Panthera" title="Panthera">Panthera</a></i> with the <a href="https://stackoverflow.com/wiki/Lion" title="Lion">lion</a>, <a href="https://stackoverflow.com/wiki/Leopard" title="Leopard">leopard</a>, <a href="https://stackoverflow.com/wiki/Jaguar" title="Jaguar">jaguar</a>, and <a href="https://stackoverflow.com/wiki/Snow_leopard" title="Snow leopard">snow leopard</a>. It is an <a href="https://stackoverflow.com/wiki/Apex_predator" title="Apex predator">apex predator</a>, primarily preying on <a href="https://stackoverflow.com/wiki/Ungulate" title="Ungulate">ungulates</a> such as <a href="https://stackoverflow.com/wiki/Deer" title="Deer">deer</a> and <a href="https://stackoverflow.com/wiki/Bovid" class="mw-redirect" title="Bovid">bovids</a>.</p>';
var searchString = 'largest cat species';
var rx = '';
searchString.split(' ').forEach(e => {
rx += '('+e+')((?:\\s*(?:<\/?\\w[^<>]*>)?\\s*)*)';
});
rx = new RegExp(rx, 'igm');
console.log(text.match(rx));
Điều này có lẽ rất dễ dàng để biến thành bộ lọc tổng hợp MongoDB.