Parse URI

Description

This operation is used to break down and analyze a Uniform Resource Identifier (URI) into its components, making it easier to understand and work with the data in a URI.


Data types

These are the input/output expected data types for this operation:

Input data

- URLs you want to analyze.

Output data

- Breakdown of the input URLs.


Example

Suppose you want to analyze a series of URLs in your input data:

  1. In your Pipeline, open the required Action configuration and select the input Field.

  2. In the Operation field, choose Parse URI.

  3. Give your Output field a name and click Save. The URLs in your input field will be analyzed.

For example, for the following URL:

https://user:[email protected]:8080/path/to/resource?key=value#fragment

you will get the following analysis:

Scheme: https Host: example.com:8080 Path: /path/to/resource Arguments: map[key:[value]] User: user Password: pass

You can try out operations with specific values using the Input field above the operation. You can enter the value in the example above and check the result in the Output field.

Last updated

Was this helpful?