정의
$indexOfBytes문자열에서 하위 string 의 발생을 검색하고 첫 번째 항목의 UTF-8 바이트 인덱스 (0 기반)를 반환합니다. 부분 문자열을 찾을 수 없으면
-1을 반환합니다.$indexOfByteshas the following operator expression syntax:{ $indexOfBytes: [ <string expression>, <substring expression>, <start>, <end> ] } 피연산자설명<string expression>문자열로 해석되는 한 모든 유효한 표현식 일 수 있습니다. 표현식에 대한 자세한 내용은 표현식을 참조하세요 .
If the string expression resolves to a value of
nullor refers to a field that is missing,$indexOfBytesreturnsnull.If the string expression does not resolve to a string or
nullnor refers to a missing field,$indexOfBytesreturns an error.<substring expression><start>선택 사항 Atlas Search의 시작 인덱스 위치를 지정하는 정수입니다. 음수가 아닌 정수로 해석되는 모든 유효한 표현식 일 수 있습니다.
<end>Optional An integral number that specifies the ending index position for the search. Can be any valid expression that resolves to a non-negative integral number. If you specify a
<end>index value, you should also specify a<start>index value; otherwise,$indexOfBytesuses the<end>value as the<start>index value instead of the<end>value.
행동
If
<string expression>is null,$indexOfBytesreturnsnull.If
$indexOfBytesis called on a field that doesn't exist in the document,$indexOfBytesreturnsnull.If
<string expression>is not a string and not null,$indexOfBytesreturns an error.If
<substring expression>is null,$indexOfBytesreturns an error.If
<start>or<end>is a negative number,$indexOfBytesreturns an error.If
<start>is a number greater than<end>,$indexOfBytesreturns-1.If
<start>is a number greater than the byte length of the string,$indexOfBytesreturns-1.If
<start>or<end>is given a value that is not an integer,$indexOfBytesreturns an error.If the
<substring expression>is found multiple times within the<string expression>, then$indexOfBytesreturns the index of the first<substring expression>found.
다양한 동작을 강조하기 위한 몇 가지 짧은 예:
예시 | 결과 |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
예시
다음 문서가 포함된 inventory 컬렉션을 생각해 보세요.
db.inventory.insertMany( [ { _id: 1, item: "foo" }, { _id: 2, item: "fóofoo" }, { _id: 3, item: "the foo bar" }, { _id: 4, item: "hello world fóo" }, { _id: 5, item: null }, { _id: 6, amount: 3 } ] )
The following operation uses the $indexOfBytes operator to retrieve the indexes at which the string foo is located in each item:
db.inventory.aggregate( [ { $project: { byteLocation: { $indexOfBytes: [ "$item", "foo" ] }, } } ] )
이 연산은 다음과 같은 결과를 반환합니다.
{ _id: 1, byteLocation: "0" } { _id: 2, byteLocation: "4" } { _id: 3, byteLocation: "4" } { _id: 4, byteLocation: "-1" } { _id: 5, byteLocation: null } { _id: 6, byteLocation: null }