Home Explore Blog CI



nushell

commands/docs/from_vcf.md
f2dba713888be53f160f8232361ea145e48ea3dfadf5771f00000003000007eb
---
title: from vcf
categories: |
  formats
version: 0.104.0
formats: |
  Parse text as .vcf and create table.
usage: |
  Parse text as .vcf and create table.
editLink: false
contributors: false
---
<!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. -->

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

<div class='command-title'>Parse text as .vcf and create table.</div>

::: warning This command requires a plugin
The `from vcf` command resides in the `formats` plugin.
To use this command, you must install and register `nu_plugin_formats`.
See the [Plugins](/book/plugins.html) chapter in the book for more information.
:::


## Signature

```> from vcf {flags} ```


## Input/output types:

| input  | output |
| ------ | ------ |
| string | table  |
## Examples

Converts ics formatted string to table
```nu
> 'BEGIN:VCARD
N:Foo
FN:Bar
EMAIL:foo@bar.com
END:VCARD' | from vcf
╭───┬──────────────────────────────────────╮
│ # │              properties              │
├───┼──────────────────────────────────────┤
│ 0 │ ╭───┬───────┬─────────────┬────────╮ │
│   │ │ # │ name  │    value    │ params │ │
│   │ ├───┼───────┼─────────────┼────────┤ │
│   │ │ 0 │ N     │ Foo         │        │ │
│   │ │ 1 │ FN    │ Bar         │        │ │
│   │ │ 2 │ EMAIL │ foo@bar.com │        │ │
│   │ ╰───┴───────┴─────────────┴────────╯ │
╰───┴──────────────────────────────────────╯

```

Chunks
840da042 (1st chunk of `commands/docs/from_vcf.md`)
Title: untitled
Summary
--- title: from vcf categories: | formats version: 0.104.0 formats: | Parse text as .vcf and create table. usage: | Parse text as .vcf and create table. editLink: false contributors: false --- <!-- This file is automatically generated. Please edit the command in https://github.com/nushell/nushell instead. --> # `from vcf` for [formats](/commands/categories/formats.md) <div class='command-title'>Parse text as .vcf and create table.</div> ::: warning This command requires a plugin The `from vcf` command resides in the `formats` plugin. To use this command, you must install and register `nu_plugin_formats`. See the [Plugins](/book/plugins.html) chapter in the book for more information. ::: ## Signature ```> from vcf {flags} ``` ## Input/output types: | input | output | | ------ | ------ | | string | table | ## Examples Converts ics formatted string to table ```nu > 'BEGIN:VCARD N:Foo FN:Bar EMAIL:foo@bar.com END:VCARD' | from vcf ╭───┬────────────────────────────────────