CSV से JSON
CSV डेटा को JSON प्रारूप में परिवर्तित करें.
CSV डेटा को YAML प्रारूप में बदलें।
In this example, we transform a short CSV file containing a music playlist into structured YAML data. The input CSV contains five records with three columns each and the output YAML contains five lists of lists (one list for each CSV record). In YAML, lists start with the "-" symbol and the nested lists are indented with two spaces
In this example, we are working with CSV data that summarizes key properties of three planets in our solar system. The data consists of three columns with headers "planet", "relative mass" (with "1" being the mass of earth), and "satellites". To preserve the header names in the output YAML data, we enable the "Transform Headers" option, creating a YAML file that contains a list of YAML objects, where each object has three keys: "planet", "relative mass", and "satellites".
In this example, we convert a CSV file with non-standard formatting into a regular YAML file. The input data uses a semicolon as a separator for the "product", "quantity", and "price" fields. It also contains empty lines and lines that are commented out. To make the program work with this custom CSV file, we input the semicolon symbol in the CSV delimiter options. To skip comments, we specify "#" as the symbol that starts comments. And to remove empty lines, we activate the option for skipping blank lines (that do not contain any symbols). In the output, we obtain a YAML file that contains a list of three objects, which use CSV headers as keys. Additionally, the objects in the YAML file are indented with four spaces.
CSV डेटा को JSON प्रारूप में परिवर्तित करें.
CSV डेटा को XML प्रारूप में परिवर्तित करें.
CSV पंक्तियों को स्तंभों में परिवर्तित करें.
CSV डेटा को TSV प्रारूप में परिवर्तित करें.
CSV कॉलम पुनःक्रमित करें.
CSV फ़ाइल सीमांकक बदलें
सीएसवी में जल्दी से पंक्तियां और स्तंभ खोजें जो मूल्य खो रहे हैं।
CSV फ़ाइल को शीघ्रता से ट्रांसपोज़ करें.
CSV फ़ाइल में कहीं भी एक या अधिक नए कॉलम शीघ्रता से डालें.
TSV को JSON प्रारूप में परिवर्तित करें