2017년 6월 23일 금요일

Unity 에서 쓸 수 있는 CSV Reader (C#)

간단히 스트링 저장해놓고 불러 쓰는 용도로 사용하려고 준비...
개행은 \n이 아니라 br 태그로 사용하도록 만듬.

# CSVReader Class

using UnityEngine;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;

public class CSVReader
{
    static string SPLIT_RE = @",(?=(?:[^""]*""[^""]*"")*(?![^""]*""))";
    static string LINE_SPLIT_RE = @"\r\n|\n\r|\n|\r";
    static char[] TRIM_CHARS = { '\"' };

    public static List<Dictionary<string, object>> Read(string file)
    {
        
        var list = new List<Dictionary<string, object>>();
        TextAsset data = Resources.Load(file) as TextAsset;


        var lines = Regex.Split(data.text, LINE_SPLIT_RE);

        if (lines.Length <= 1) return list;

        var header = Regex.Split(lines[0], SPLIT_RE);
        for (var i = 1; i < lines.Length; i++)
        {

            if (lines[i].Replace(" ","").Substring(0, 2) == "//")
            {
                Debug.Log(lines[i]);
            }
            else
            {
                var values = Regex.Split(lines[i], SPLIT_RE);
                if (values.Length == 0 || values[0] == "") continue;

                var entry = new Dictionary<string, object>();
                for (var j = 0; j < header.Length && j < values.Length; j++)
                {
                    string value = values[j];
                    value = value.TrimStart(TRIM_CHARS).TrimEnd(TRIM_CHARS).Replace("\\", "");
                    value = value.Replace("</ br>", "\n");
                    value = value.Replace("</ comma>", ",");
                    object finalvalue = value;
                    int n;
                    float f;
                    if (int.TryParse(value, out n))
                    {
                        finalvalue = n;
                    }
                    else if (float.TryParse(value, out f))
                    {
                        finalvalue = f;
                    }
                    entry[header[j]] = finalvalue;
                }
                list.Add(entry);
            }
        }
        return list;
    }
}


#사용법
csv 파일을 하나 만든다 내용은 아래와 같다.

key,value
a,a value
b,"b, value"
c,"c</ br>line break"
Assets/resources/kpaper.csv 에 파일이 있다고 가정하고 아래 코드 실행

List<Dictionary<string,object>> data = CSVReader.Read ("kpaper");
 
        for(var i=0; i < data.Count; i++) {
            Debug.Log ("key " + data[i]["key"] + " " +
                   "value " + data[i]["value"]);
        }









댓글 없음:

댓글 쓰기