CSV转数组、CSV转JSON(JS+PHP双版本)
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
一、CSV转JSON
function csvToArray(strData, strDelimiter) {
// Check to see if the delimiter is defined. If not,then default to comma.
// 检查是否定义了分隔符。如果未定义,则默认为逗号
strDelimiter = (strDelimiter || ",");
// Create a regular expression to parse the CSV values.
// 创建一个正则表达式来解析CSV值。
let objPattern = new RegExp((
// Delimiters.(分隔符)
"(\\" + strDelimiter + "|\\r?\\n|\\r|^)" +
// Quoted fields.(引用的字段)
"(?:\"([^\"]*(?:\"\"[^\"]*)*)\"|" +
// Standard fields.(标准字段)
"([^\"\\" + strDelimiter + "\\r\\n]*))"), "gi");
// Create an array to hold our data. Give the array a default empty first row.
// 创建一个数组来保存数据。给数组赋值一个空元素数组
let arrData = [
[]
];
// Create an array to hold our individual pattern matching groups.
// 创建一个数组来保存我们的单个模式匹配组
let arrMatches = null;
// Keep looping over the regular expression matches until we can no longer find a match.
// 正则表达式匹配上保持循环,直到我们再也找不到匹配的
while (arrMatches = objPattern.exec(strData)) {
console.log(arrMatches);
// Get the delimiter that was found.
// 获取找到的分隔符
let strMatchedDelimiter = arrMatches[1];
// Check to see if the given delimiter has a length
// 检查给定的分隔符是否有长度
// (is not the start of string) and if it matches
// (不是字符串的开头)如果匹配
// field delimiter. If id does not, then we know
// 字段分隔符。如果身份证没有,那我们就知道了
// that this delimiter is a row delimiter.
// 此分隔符是行分隔符。
if (strMatchedDelimiter.length && (strMatchedDelimiter != strDelimiter)) {
// Since we have reached a new row of data,add an empty row to our data array.
// 既然我们得到了新的一行数据,向数据数组中添加一个空行。
arrData.push([]);
}
// Now that we have our delimiter out of the way,
// 既然我们已经把分隔符弄出来了,
// let's check to see which kind of value we
// 让我们来看看我们需要什么样的价值观
// captured (quoted or unquoted).
// 捕获(引用或未引用)。
let strMatchedValue;
if (arrMatches[2]) {
// We found a quoted value. When we capture this value, unescape any double quotes.
// 我们找到一个引用值。当我们抓到这个值,取消显示任何双引号
strMatchedValue = arrMatches[2].replace(
new RegExp("\"\"", "g"), "\"");
} else {
// We found a non-quoted value.
// 我们找到了一个没有引号的值。
strMatchedValue = arrMatches[3];
}
// Now that we have our value string, let's add it to the data array.
// 现在我们有了值字符串,让我们将其添加到数据数组中
arrData[arrData.length - 1].push(strMatchedValue);
}
// 移除最后一个空数据
arrData.splice(-1);
// Return the parsed data.
// 返回解析结果
return (arrData);
}
// 转json对象
function csvToObject(csv) {
var array = csvToArray(csv);
var objArray = [];
for (var i = 1; i < array.length; i++) {
objArray[i - 1] = {};
for (var k = 0; k < array[0].length && k < array[i].length; k++) {
var key = array[0][k];
objArray[i - 1][key] = array[i][k]
}
}
return objArray;
}
// 转json字符串
function csvToJson(csv){
return JSON.stringify(csvToObject(csv));
}
// php版本
function csvToArray($strData, $strDelimiter = null){
// 检查是否定义了分隔符。如果不是,则默认为逗号。
$strDelimiter = empty($strDelimiter)?",":$strDelimiter;
// 创建一个正则表达式来解析CSV值。
$objPattern = "/(\\".$strDelimiter."|\\r?\\n|\\r|^)". // 分隔符
"(?:\"([^\"]*(?:\"\"[^\"]*)*)\"|". // 引用的字段
"([^\"\\".$strDelimiter."\\r\\n]*))/i";// 标准字段
// 创建一个数组来保存数据。给出数组
// 默认为空的第一行
$arrData = [
[]
];
// 创建一个数组来保存我们的单个模式,匹配组
$arrMatches = null;
// 设置偏移量
$offset = 0;
while(preg_match($objPattern, $strData, $matches, PREG_OFFSET_CAPTURE, $offset)){
// 获取偏移量
$offset += mb_strlen($matches[0][0]);
if(empty($matches[3])){
continue;
}
// Get the delimiter that was found.
// 获取找到的分隔符
$strMatchedDelimiter = $matches[1][0];
// Check to see if the given delimiter has a length
// 检查给定的分隔符是否有长度
// (is not the start of string) and if it matches
// (不是字符串的开头)如果匹配
// field delimiter. If id does not, then we know
// 字段分隔符。如果身份证没有,那我们就知道了
// that this delimiter is a row delimiter.
// 此分隔符是行分隔符。
if (strlen($strMatchedDelimiter) && ($strMatchedDelimiter != $strDelimiter)) {
// Since we have reached a new row of data,add an empty row to our data array.
// 既然我们得到了新的一行数据,向数据数组中添加一个空行。
$arrData[] = [];
}
// Now that we have our delimiter out of the way,
// 既然我们已经把分隔符弄出来了,
// let's check to see which kind of value we
// 让我们来看看我们需要什么样的价值观
// captured (quoted or unquoted).
// 捕获(引用或未引用)。
$strMatchedValue = '';
if ($matches[2][0]) {
// We found a quoted value. When we capture this value, unescape any double quotes.
// 我们找到一个引用值。当我们抓到这个值,取消显示任何双引号
$strMatchedValue = preg_replace('/""/g','\"',$matches[2][0]);
} else {
// We found a non-quoted value.
// 我们找到了一个没有引号的值。
$strMatchedValue = $matches[3][0];
}
// Now that we have our value string, let's add it to the data array.
// 现在我们有了值字符串,让我们将其添加到数据数组中
$arrData[count($arrData) - 1][] = $strMatchedValue;
}
// 移除最后一个空数组
array_pop($arrData);
return $arrData;
}
二、JSON转CSV
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
3 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献6条内容
所有评论(0)