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:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Parse URI.
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
Last updated
Was this helpful?