当前位置:   article > 正文

CSV转数组、CSV转JSON(JS+PHP双版本)_csv 转json array

csv 转json array

一、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));
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
// 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;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63

二、JSON转CSV

参考资料:
http://csv2json.com/
php正则表达式之preg_match详解

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/529140
推荐阅读
相关标签
  

闽ICP备14008679号