Home Explore Blog CI



nushell

commands/docs/from_url.md
a7edeae2dbaa101da7d50e634f5fb8f8a3f529d21b168c3200000003000003b8
---
title: from url
categories: |
  formats
version: 0.104.0
formats: |
  Parse url-encoded string as a record.
usage: |
  Parse url-encoded string as a record.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

# `from url` for [formats](/commands/categories/formats.md)

<div class='command-title'>Parse url-encoded string as a record.</div>

## Signature

```> from url {flags} ```


## Input/output types:

| input  | output |
| ------ | ------ |
| string | record |
## Examples

Convert url encoded string into a record
```nu
> 'bread=baguette&amp;cheese=comt%C3%A9&amp;meat=ham&amp;fat=butter' | from url
╭────────┬──────────╮
│ bread  │ baguette │
│ cheese │ comté    │
│ meat   │ ham      │
│ fat    │ butter   │
╰────────┴──────────╯
```

Chunks
27c51a84 (1st chunk of `commands/docs/from_url.md`)
Title: from url: Parse URL-encoded Strings in Nushell
Summary
The `from url` command in Nushell parses a URL-encoded string and converts it into a record. The documentation provides the command's signature, input/output types (string in, record out), and an example of how to use it to convert a URL-encoded string into a structured record.