반응형
① CSV로 저장
② 파싱코드
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++) {
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("\\", "");
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;
}
}
② 사용코드
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class Test : MonoBehaviour
{
public int _exp = 0;
void Start()
{
List<Dictionary<string, object>> data = CSVReader.Read("people");
for (var i = 0; i < data.Count; i++)
{
Debug.Log("index " + (i).ToString() + " : " + data[i]["Name"] + " " + data[i]["Age"]);
}
}
}
반응형
'Unity > Unity 리서치' 카테고리의 다른 글
Unity Firebase용 데이터 클래스 (0) | 2021.08.22 |
---|---|
[C#] 객체의 변수를 string으로 받기 & Reflection (0) | 2021.08.14 |
엑셀파일을 Json으로 변환하여 Unity에서 사용 (0) | 2021.08.14 |
Initialize Prefab (0) | 2021.08.08 |
VS Code C# 생성자 자동생성 (1) | 2021.08.08 |