dict.get() function
The dict.get()
function returns the value of a specified key in a dictionary
or a default value if the key does not exist.
import "dict"
dict.get(
dict: [1: "foo", 2: "bar"],
key: 1,
default: ""
)
Parameters
All paremeters are required
dict
Dictionary to return a value from.
Data type: Dictionary
key
Key to return from the dictionary.
Data type: String | Boolean | Integer | Uinteger | Float | Time | Bytes
default
Default value to return if the key
does not exist in the dictionary.
Must be the same type as values in the dictionary.
Data type: String | Boolean | Integer | Uinteger | Float | Time | Bytes
Examples
Return a property of a dictionary
import "dict"
d = [1: "foo", 2: "bar"]
dict.get(
dict: d,
key: 1,
default: ""
)
// Returns foo
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, the following resources are available:
InfluxDB Cloud and InfluxDB Enterprise customers can contact InfluxData Support.