Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The STRINGTONULL
function converts a string expression to null
.
The STRINGTONULL
function converts a string expression to null
in Azure Cosmos DB for NoSQL.
Syntax
STRINGTONULL(<string_expr>)
Arguments
Description | |
---|---|
string_expr |
A string expression. |
Return types
Returns a null
.
Examples
This section contains examples of how to use this query language construct.
Convert string to null
In this example, the STRINGTONULL
function is used to convert various string expressions to null
.
SELECT VALUE {
parseNullString: STRINGTONULL("null"),
parseWithPrefix: STRINGTONULL("null "),
parseWithSuffix: STRINGTONULL(" null"),
parseWithWhitespace: STRINGTONULL(" null "),
parseUppercase: STRINGTONULL("NULL"),
parseTitlecase: STRINGTONULL("Null"),
parseNull: STRINGTONULL(null),
parseUndefined: STRINGTONULL(undefined)
}
[
{
"parseNullString": null,
"parseWithPrefix": null,
"parseWithSuffix": null,
"parseWithWhitespace": null
}
]
Remarks
- This function doesn't utilize the index.
- If the expression can't be converted, the function returns
undefined
.