contains¶
Returns true if the given string is found in the datapoint string
contains
permits you to check if a datapoint with a string data value contains the given substring:
["Hello World!","hello world","hi there"]
Running the transform contains("World")
will give:
[true,false,false]
Transform Details¶
Input Schema | Output Schema |
---|---|
{}
| {}
|
Arguments¶
# | Description | Type | Schema |
---|---|---|---|
1 | The substring to check for | const | {}
|