这是什么文件格式?

Jas*_*oon 1 file-format

我一直在使用下面的文件格式作为平面文本文件的替代品,我想知道它是否有名称...

假设您在CSV中包含此数据:

FirstName,LastName,Email,UserName,Notes
Bob,Smith,bsmith@email.com,bsmith,Bob likes chicken
John,Doe,jdoe@email.com,jdoe,
Steve,Jobs,STEVE@apple.com,STEVE,Steve Jobs likes things that start with "i"
Run Code Online (Sandbox Code Playgroud)

在这种"其他"文件格式中,有3列:

  1. 唯一身份
  2. 属性名称

以上数据如下所示:

bmsith@email.com,FirstName,Bob
bmsith@email.com,LastName,Smith
bmsith@email.com,Email,bmsith@email.com
bmsith@email.com,UserName,bsmith
bmsith@email.com,Notes,Bob likes chicken
jdoe@email.com,FirstNameJohn
jdoe@email.com,LastName,Doe
jdoe@email.com,Email,jdoe@email.com
jdoe@email.com,UserName,jdoe
STEVE@apple.com,FirstName,Steve
STEVE@apple.com,LastName,Jobs
STEVE@apple.com,Email,STEVE@apple.com
STEVE@apple.com,UserName,STEVE
STEVE@apple.com,Notes,Steve Jobs likes things that start with "i"
Run Code Online (Sandbox Code Playgroud)

我实际上是在tab上划分,但逗号更容易阅读.在此示例中,任何属性都可以用作唯一标识符.

sir*_*ide 5

它仍然是CSV.您只是在结构方面而不是内容方面呈现来自不同方面的数据.