nushell/old_nushell/docs/commands/from-url.md
Fernando Herrera fdce6c49ab engine-q merge
2022-02-07 19:11:34 +00:00

405 B

from url

Parse url-encoded string as a table.

Example

> echo 'bread=baguette&cheese=comt%C3%A9&meat=ham&fat=butter' | from url
────────┬──────────
 bread  │ baguette
 cheese │ comté
 meat   │ ham
 fat    │ butter
────────┴──────────