정규 표현식으로 필터링
정규 표현식으로 필터링
정규식을 작성하여 검색 대상을 정확하게 찾을 수 있습니다.
정규식은 문자열 쿼리에만 사용할 수 있습니다 .
"주소"필드가 문자 "S"로 시작하는 문서 만 찾으려면 다음과 같은 정규식을 사용하십시오 /^S/.
예
주소가 문자 "S"로 시작하는 문서 찾기 :
var MongoClient = require('mongodb').MongoClient;
var url = "mongodb://localhost:27017/";
MongoClient.connect(url, function(err, db) {
if (err) throw err;
var dbo = db.db("mydb");
var query = { address: /^S/ };
dbo.collection("customers").find(query).toArray(function(err, result) {
if (err) throw err;
console.log(result);
db.close();
});
});
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4946 | node.js | 6년 전 | 2616 | ||
| 4945 | node.js | 6년 전 | 2389 | ||
| 4944 | node.js | 6년 전 | 2526 | ||
| 4943 | node.js | 6년 전 | 2277 | ||
| 4942 | node.js | 6년 전 | 2259 | ||
| 4941 | node.js | 6년 전 | 2723 | ||
| 4940 | node.js | 6년 전 | 1872 | ||
| 4939 | node.js | 6년 전 | 1997 | ||
| 4938 | node.js | 6년 전 | 2461 | ||
| 4937 | node.js | 6년 전 | 2253 | ||
| 4936 | node.js | 6년 전 | 2327 | ||
| 4935 | node.js | 6년 전 | 2143 | ||
| 4934 | node.js | 6년 전 | 2453 | ||
| 4933 | node.js | 6년 전 | 2252 | ||
| 4932 | node.js | 6년 전 | 2692 | ||
| 4931 | node.js | 6년 전 | 2077 | ||
| 4930 | node.js | 6년 전 | 2002 | ||
| 4929 | node.js | 6년 전 | 8638 | ||
| 4928 | node.js | 6년 전 | 3757 | ||
| 4927 | node.js | 6년 전 | 2399 | ||
| 4926 | node.js | 6년 전 | 2509 | ||
| 4925 | node.js | 6년 전 | 2092 | ||
| 4924 | node.js | 6년 전 | 3379 | ||
| 4923 | node.js | 6년 전 | 2230 | ||
| 4922 | node.js | 6년 전 | 1995 | ||
| 4921 | node.js | 6년 전 | 2050 | ||
| 4920 | node.js | 6년 전 | 1769 | ||
| 4919 | node.js | 6년 전 | 2042 | ||
| 4918 | node.js | 6년 전 | 2184 | ||
| 4917 | node.js | 6년 전 | 2400 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기