zoukankan      html  css  js  c++  java
  • 什么是Pipe Delimited Text File

    我们先看什么是Delimited Text File
    1. A delimited text file is one in which each line of text is a record, and the fields are separated by a known character.
    2. Common delimiters include the tab character or various punctuation characters. The delimiter should always be one which does not appear in the data.
    3. Delimited text files are easily produced by most desktop spreadsheet and database applications (eg Microsoft Excel, Microsoft Access). You can usually choose "File" then "Save As" or "Export", then select the type of file you would like to save as.
    就是文件的每一行都是一条记录,记录的各个列用特别字符分隔开(一般来说用标点字符)。现有的表格工具软件一般都会对这类文件有支持。

    再看前面的Pipe
    这里的Pipe指的是Pipe Symbol,就是竖线符号"|"。所以这个其实就是“用竖线做分隔符的文本记录文件”,是不是觉得CSV如出一辙?分隔符号不同而已。

  • 相关阅读:
    CF601B Solution
    CF847F Solution
    CF877D Solution
    CF1472F Solution
    CF1472G Solution
    CF1355E Solution
    CF912D Solution
    CF1167F Solution
    shell脚本自动备份MySQL数据库
    centos7 crontab笔记
  • 原文地址:https://www.cnblogs.com/KeithWang/p/2313143.html
Copyright © 2011-2022 走看看