CSV examples

SUMMARY

We leave no stone unturned to expose you to prime examples of proper CSV formatting, which is crucial to link importing:

Example 1. Import of long URLs

Short URLs will be automatically generated "url"
"https://www.yahoo.com/tech/"
"https://www.google.com/doodles"
"http://example.com/"
Download


Example 2. Import of long URLs with custom hashes

"url";"short_id"
"https://www.yahoo.com/tech/";"37r"
"https://www.google.com/doodles";"37s"
"http://example.com/";"37t"
Download

Example 3. Import of long URLs with custom short URLs

Custom hashes will be extracted from short URLs "url";"short_url"
"https://www.yahoo.com/tech/";"custom.com/37r"
"https://www.google.com/doodles";"custom.com/37s"
"http://example.com/";"custom.com/37t"
Download


Example 4. Import of long URLs with custom hashes and notes

Notes are optional "url";"short_id";"note"
"https://www.yahoo.com/tech/";"37r";""
"https://www.google.com/doodles";"37s";"Funny stuff"
"http://example.com/";"37t";"real site"
Download


In computing, comma-separated value (CSV) files store tabular data (numbers and text) in plain text. The name of this file format comes from the use of the comma as a field separator:

See Also: