Skip to content
Allin

VCF to CSV

Turn a vCard address book into a spreadsheet-ready CSV, one contact per row.

10 / 10 free files today

VCF to CSV works straight from this page — free, instant, nothing to install. It sits under Contacts in our catalogue, alongside CSV to VCF and Merge VCF files.

How to use it

  1. Open the tool — no signup or install needed.
  2. Enter your input or adjust the available options.
  3. Get your result instantly, then copy or download it.

Frequently asked questions

What is VCF to CSV?

Turn a vCard address book into a spreadsheet-ready CSV, one contact per row.

When would I actually use this?

Moving an address book between a phone, a mail client and a spreadsheet, merging exports from two devices that each hold half the contacts, and reading a .vcf someone sent without importing it first.

What is the most common mistake?

Splitting a structured field on its separator without honouring the escape. A vCard writes a name and an address as parts joined by semicolons — but a semicolon inside a value is escaped, so a company written "Dupont & Sons\; Ltd" is one part and naive splitting tears it in two. Long values fold onto continuation lines for the same reason.

How is VCF to CSV different from CSV to VCF?

They sit next to each other but answer different questions: CSV to VCF is the one to open when you need it to build a vCard file your phone can import from a spreadsheet of contacts. Pick whichever matches what you're starting from — both are free.

Is there a tool for the next step?

Merge VCF files is the closest one after this: Combine several vCard files into a single address book you can import once.

What else is worth having open alongside it?

VCF to JSON and VCF viewer — they come up in the same task often enough to be worth a second tab.

Where do the figures come from?

vCard files are read against the published specification, with line folding undone and escapes honoured before anything is split. The tools do not reconcile duplicates by guessing: merging keeps what both files agree on and shows you the rest rather than silently choosing.

Further reading

All guides
ExplainerWhy Your CSV Breaks Accents and Dates in ExcelThree completely different faults hide behind the same sentence. One is the encoding, one is the separator, one is Excel guessing at types while it opens the file — and the fix for each is different. Here is how to tell them apart in five seconds.How-toMerging Two Subtitle Tracks Into a Bilingual Version: What Actually Happens to the CuesCue 12 of the English track is not cue 12 of the French one, because translators split and join sentences differently. Two strategies exist for pairing them; this merger uses neither — it interleaves. Here is what that gives you and when it is good enough.How-toSubtitles to a Spreadsheet, and Back: What Survives the Round TripA comma is quoted, a quotation mark is doubled, and a two-line cue keeps both lines — verified byte-identical over three consecutive round trips. What can still change your file is the spreadsheet in the middle.ExplainerSemicolon, Tab, Pipe: Choosing a Delimiter That Survives the TripWhy the reader's language decides the delimiter, what the converter does to the quoting when you switch, what the sep= first line really is, and the count of quoted cells on the same export written five ways.ExplainerConverting Formulas to Values Keeps the Cached Answer, Not the CalculationA spreadsheet file stores both the formula and the last answer Excel computed. Stripping the formula leaves the stored answer — and leaves a blank wherever the file never carried one.ExplainerThe Number 1 and the Text "1" Are Not DuplicatesDeduplication compares whole rows exactly, cell type included. Five identical-looking rows came out as three, because one held a number, one a string and one a string with a leading space.