Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Syntax

Code Block
split-url <column>:column

The <column>column is a column containing the URL.

...

Applying this directive:

Code Block
split-url :url

would result results in this record:

Code Block
{
  "url": "http://example.com:80/docs/books/tutorial/index.html?name=networking#DOWNLOADING",
  "url_protocol": "http",
  "url_authority": "example.com:80",
  "url_host": "example.com",
  "url_port": 80,
  "url_path": "/docs/books/tutorial/index.html",
  "url_filename": "/docs/books/tutorial/index.html?name=networking",
  "url_query": "name=networking"
}

...