$toUpper (aggregation)

Definition

  • $toUpper
  • Converts a string to uppercase, returning the result.

$toUpper has the following syntax:

  1. { $toUpper: <expression> }

The argument can be any expressionas long as it resolves to a string. For more information onexpressions, see Expressions.

If the argument resolves to null, $toUpper returns anempty string "".

Behavior

$toUpper only has a well-defined behavior for strings of ASCII characters.

Example

Consider a inventory collection with the following documents:

  1. { "_id" : 1, "item" : "ABC1", quarter: "13Q1", "description" : "PRODUCT 1" }
  2. { "_id" : 2, "item" : "abc2", quarter: "13Q4", "description" : "Product 2" }
  3. { "_id" : 3, "item" : "xyz1", quarter: "14Q2", "description" : null }

The following operation uses the $toUpper operator returnuppercase item and uppercase description values:

  1. db.inventory.aggregate(
  2. [
  3. {
  4. $project:
  5. {
  6. item: { $toUpper: "$item" },
  7. description: { $toUpper: "$description" }
  8. }
  9. }
  10. ]
  11. )

The operation returns the following results:

  1. { "_id" : 1, "item" : "ABC1", "description" : "PRODUCT 1" }
  2. { "_id" : 2, "item" : "ABC2", "description" : "PRODUCT 2" }
  3. { "_id" : 3, "item" : "XYZ1", "description" : "" }