$indexOfBytes (aggregation)
On this page
Definition
$indexOfBytesSearches a string for an occurrence of a substring and returns the UTF-8 byte index (zero-based) of the first occurrence. If the substring is not found, returns
-1.$indexOfByteshas the following operator expression syntax:{ $indexOfBytes: [ <string expression>, <substring expression>, <start>, <end> ] } OperandDescription<string expression>Can be any valid expression as long as it resolves to a string. For more information on expressions, see Expression Operators.
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>Can be any valid expression as long as it resolves to a string. For more information on expressions, see Expression Operators.<start>Optional An integral number that specifies the starting index position for the search. Can be any valid expression that resolves to a non-negative integral number.<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.
Behavior
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.
Some short examples to highlight different behavior:
Example | Results |
|---|---|
{ $indexOfBytes: [ "cafeteria", "e" ] } | 3 |
{ $indexOfBytes: [ "cafétéria", "é" ] } | 3 |
{ $indexOfBytes: [ "cafétéria", "e" ] } | -1 |
{ $indexOfBytes: [ "cafétéria", "t" ] } | 5 |
{ $indexOfBytes: [ "foo.bar.fi", ".", 5 ] } | 7 |
{ $indexOfBytes: [ "vanilla", "ll", 0, 2 ] } | -1 |
{ $indexOfBytes: [ "vanilla", "ll", -1 ] } | -1 |
{ $indexOfBytes: [ "vanilla", "ll", 12 ] } | -1 |
{ $indexOfBytes: [ "vanilla", "ll", 5, 2 ] } | -1 |
{ $indexOfBytes: [ "vanilla", "nilla", 3 ] } | -1 |
{ $indexOfBytes: [ null, "foo" ] } | null |
Examples
Consider an inventory collection with the following documents:
{ "_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" ] }, } } ] )
The operation returns the following results:
{ "_id" : 1, "byteLocation" : "0" } { "_id" : 2, "byteLocation" : "4" } { "_id" : 3, "byteLocation" : "4" } { "_id" : 4, "byteLocation" : "-1" } { "_id" : 5, "byteLocation" : null } { "_id" : 6, "byteLocation" : null }