CSVをJSONに変換する
CSV データを JSON 形式に変換します。
CSVファイルの区切り文字を変更します。カンマ、セミコロン、タブ、カスタム区切り文字など、さまざまなCSV形式間で変換できます。
CSVファイルの区切り文字を変更します。カンマ、セミコロン、タブ、カスタム区切り文字など、さまざまなCSV形式間で変換できます。
In this example, we change the column separator to the semicolon separator in a CSV file containing data about countries, their populations, and population densities. As you can see, the input CSV file uses the standard commas as separators. After specifying this delimiter in the source CSV options, we set a new CSV delimiter for the output file to a semicolon, resulting in a new CSV file that now uses semicolons ";" in the output. Such CSV files with semicolons are called SSV files (semicolon-separated values files)
In this example, a data scientist working with flowers was given an unusual CSV file that uses the vertical bar symbol as the field separator (such files are called PSV files – pipe-separated values files). To transform the file back to the standard comma-separated values (CSV) file, in the options, she set the input delimiter to "|" and the new delimiter to ",". She also wrapped the output fields in single quotes, enabled the option to remove empty lines from the input, and discarded comment lines starting with the "#" symbol.
In this example, we import CSV data with zombie characters from the game Plants vs. Zombies. The data includes zombies names, the level at which they first appear in the game, their health, damage, and speed. The data follows the standard CSV format, with commas serving as field separators. To change the readability of the file, we replace the usual comma delimiter with a slash symbol, creating a slash-separated values file.
CSV データを JSON 形式に変換します。
CSV データを XML 形式に変換します。
CSV の行を列に変換します。
CSV データを TSV 形式に変換します。
CSV 列を並べ替えます。
CSV ファイルを YAML ファイルにすばやく変換します。
CSV 内で値が欠落している行と列をすばやく見つけます。
CSV ファイルをすばやく転置します。
CSV ファイル内の任意の場所に 1 つ以上の新しい列をすばやく挿入します。
TSVをJSON形式に変換する