Skip to content

vCard to CSV

Converter Tools ·
·

Turn .vcf contact files into a clean CSV with name, phone, email, org, title, and URL columns. Parses one card or hundreds, all in your browser.

Why a .vcf file is so annoying to read

You exported your contacts from your phone, or someone emailed you a .vcf, and now you’re staring at a wall of BEGIN:VCARD blocks. Spreadsheets choke on it. Mail-merge tools want CSV. So do most CRMs. The vCard format is great for transferring contacts between devices, but it’s terrible the second you want to actually look at your data in rows and columns.

Paste the vCard text on the left. A CSV comes out on the right with one row per person and named columns: Full Name, First, Last, Phone, Email, Organization, Title, and URL. It re-parses as you type, so you can fix a stray line and watch the table update.

What it pulls out

Each VCARD block becomes one row. Here’s how the fields map:

  • FN is the display name, dropped straight into the Full Name column. If a card has no FN, the parser builds one from the structured N field instead.
  • N holds the structured name as Last;First;Middle;Prefix;Suffix. The first two pieces fill the First and Last columns.
  • TEL and EMAIL can appear more than once. A contact with a cell, a work line, and a fax gets all three numbers in the Phone cell, joined with a slash. Same goes for multiple emails.
  • ORG maps to Organization. If the card splits company and department (Acme;Sales), they’re joined so nothing gets lost.
  • TITLE and URL round out the last two columns.

Parameters like TYPE=CELL and grouping prefixes like item1.URL get stripped, so you see the value, not the protocol noise around it.

How the conversion handles real-world mess

Exported .vcf files are rarely clean. Long lines get folded across two rows with a leading space. This unfolds them before parsing, so a wrapped email address doesn’t end up truncated. Escaped characters matter too: a comma written as \, inside a value decodes back to a real comma, and the CSV quotes that cell so your spreadsheet doesn’t split it into two columns.

The output follows proper CSV quoting rules. Any value containing a comma, a quote, or a line break gets wrapped in double quotes, and inner quotes are doubled. That means a job title like Director, Marketing stays in one cell instead of breaking your import.

When things don’t line up

Bad cards happen. Maybe an END:VCARD is missing, or a line sits outside any block, or a contact has no name at all. Instead of silently dropping rows or crashing, the tool collects these as parse notes in an amber box above the output. You still get every valid contact in the CSV, plus a short list of what looked off and which line it was on. A card opened but never closed still gets parsed, with a note so you know.

Open the result in Excel, Google Sheets, or Numbers, then re-import wherever you need it. Nothing leaves your machine, which matters when the file is your entire address book.

FAQ

Does it handle a .vcf with hundreds of contacts?

Yep. Every BEGIN:VCARD to END:VCARD block becomes its own row. One card or a thousand, same process.

What if a contact has three phone numbers?

They all land in the Phone column, separated by a slash. No number gets dropped, and multiple emails work the same way.

Are my contacts uploaded anywhere?

No. The parsing runs entirely in JavaScript in your browser. Your address book never touches a server, so it’s fine for personal or work contacts.

Can it open the .vcf file directly?

Not yet. Open the file in any text editor, copy the contents, and paste them in. The format is plain text, so this takes a few seconds.

Why is the CSV missing a name for one row?

That card probably had no FN or N field. When there’s no name, the tool falls back to the first email so the row isn’t empty, and flags it in the parse notes.

Does it keep photos or notes from the vCard?

No. Embedded photos, notes, addresses, and birthdays are skipped. The columns focus on the fields that actually map cleanly to a contact list: name, phone, email, org, title, and URL.

converter vcard csv contacts vcf

Related Tools

CAMT to CSV

Converter Tools

Convert a CAMT.053 bank statement (ISO 20022 XML) into a clean CSV with date, amount, currency, credit/debit, counterparty, and reference columns.

CSV JSON Converter

Converter Tools

Bidirectional converter between CSV and JSON formats with proper quoting and escaping

CSV to CAMT

Converter Tools

Build a valid CAMT.053 ISO 20022 bank statement from a simple CSV. Map date, amount, currency, credit/debit, counterparty, and reference into one XML per row.

CSV to LaTeX Table

Converter Tools

Turn CSV data into a clean LaTeX tabular. Booktabs or hlines, bold headers, smart column alignment, and special chars escaped automatically.

CSV to MT940

Converter Tools

Turn a date, amount, description CSV into a simplified MT940 statement with :20:, :25:, :28C:, :60F:, :61:/:86:, and :62F: tags. Runs in your browser.

ICS to CSV

Converter Tools

Turn an iCalendar .ics file into a clean CSV with Summary, Start, End, Location, Description, and Organizer columns. Runs in your browser.

MT940 to CSV

Converter Tools

Parse an MT940 SWIFT bank statement into a clean CSV with date, value date, amount, debit/credit, type, reference, and description columns.

OFX to CSV

Converter Tools

Convert an OFX bank or credit-card statement to CSV with Date, Amount, Type, Name, Memo, and FITID columns. Parses unclosed SGML tags in your browser.

QIF to CSV

Converter Tools

Convert a Quicken QIF file into clean CSV with Date, Amount, Payee, Category, Memo, and Cleared columns. Parses every record right in your browser.

More in Converter Tools

Celsius to Kelvin

Convert Celsius to Kelvin instantly. K = C + 273.15. Anchors: 0C is 273.15K, absolute zero is -273.15C (0K), 100C is 373.15K. Runs in browser.

CM to Inches

Convert centimeters to inches instantly in your browser. 1 inch equals 2.54 cm exactly, so 1 cm is 0.393701 inches. Live converter plus a reference table.

Cooking Converter

Convert between cooking units, cups, tbsp, tsp, ml, oz, grams, lbs, and oven temperatures (°F, °C, gas mark).

Color Format Converter Pro

Convert colors between HEX, RGB, HSL, HSV, CMYK, CSS modern syntax, and integer formats

Cups to ML

Convert cups to milliliters for cooking and baking. 1 US cup equals 236.588 ml. Handles the US cup vs 250 ml metric cup gap, live in your browser.

Currency Converter Pro

Convert between 36+ world currencies with sample exchange rates and multi-currency view

DPI / PPI Converter

Convert between DPI/PPI, pixel dimensions, and physical print size. Give any two of pixels, inches/cm, or DPI and get the third.

Fahrenheit to Celsius

Convert Fahrenheit to Celsius instantly. C = (F - 32) x 5/9. Anchors: 32F is 0C, 212F is 100C, 98.6F is 37C. Calculates in your browser.

Feet to Inches

Convert feet to inches in your browser. One foot is exactly 12 inches, so it's simple multiplication. Live converter with a unit dropdown and reference table.

Feet to Meters

Convert feet to meters in the browser. One foot is exactly 0.3048 meters. Live converter with a unit dropdown and a quick reference table.

Gallons to Liters

Convert gallons to liters fast. 1 US gallon equals 3.78541 liters. Handles US and Imperial gallons with a live converter and reference table.

GB to MB

Convert gigabytes to megabytes. 1 GB = 1000 MB (decimal SI), with an honest note on the 1024 binary basis. Live converter for download sizes and quotas.

View all 62Converter Tools