http.pathEscape() function
The http.pathEscape()
function escapes special characters in a string (including /
)
and replaces non-ASCII characters with hexadecimal representations (%XX
).
Function type: Transformation
import "http"
http.pathEscape(
inputString: "/this/is/an/example-path.html"
)
// Returns %2Fthis%2Fis%2Fan%2Fexample-path.html
Parameters
inputString
The string to escape.
Data type: String
Examples
URL-encode strings in a stream of tables
import "http"
data
|> map(fn: (r) => ({ r with
path: http.pathEscape(inputString: r.path)
}))
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.