Documentation

http.pathEscape() function

http.pathEscape() escapes special characters in a string (including /) and replaces non-ASCII characters with hexadecimal representations (%XX).

Function type signature
(inputString: string) => string
For more information, see Function type signatures.

Parameters

inputString

(Required) String to escape.

Examples

URL-encode a string

import "http"

http.pathEscape(inputString: "Hello world!")// Returns "Hello%20world%21"

URL-encode strings in a stream of tables

import "http"
import "sampledata"

sampledata.string()
    |> map(fn: (r) => ({r with _value: http.pathEscape(inputString: r._value)}))

View example input and output


Was this page helpful?

Thank you for your feedback!


Linux Package Signing Key Rotation

All signed InfluxData Linux packages have been resigned with an updated key. If using Linux, you may need to update your package configuration to continue to download and verify InfluxData software packages.

For more information, see the Linux Package Signing Key Rotation blog post.

State of the InfluxDB Cloud (IOx) documentation

The new documentation for InfluxDB Cloud backed by InfluxDB IOx is a work in progress. We are adding new information and content almost daily. Thank you for your patience!

If there is specific information you’re looking for, please submit a documentation issue.