kql_quote {AzureKusto} | R Documentation |
Helper function for quoting kql elements.
Description
If the quote character is present in the string, it will be doubled.
NA
s will be replaced with NULL.
Usage
kql_quote(x, quote)
Arguments
x |
Character vector to escape. |
quote |
Single quoting character. |
Examples
kql_quote("abc", "'")
kql_quote("I've had a good day", "'")
kql_quote(c("abc", NA), "'")
[Package AzureKusto version 1.1.3 Index]