ex. db.collection.find({field: {$regex: "pattern"}}) -> 'field' 필드의 값이 "pattern" 정규표현식에 일치하는 모든 문서를 선택
ex. db.collection.find({field: {$regex: "pattern", $options: 'i'}}) -> 'field' 필드의 값이 "pattern" 정규표현식에 대소문자를 무시하고 일치하는 모든 문서를 선택