So I basically have a gradebook that is a .csv file and is formatted like this
name, grade name, grade
I am looking for the best way to split my array so that I can access each independently but they are still related to each other.
JavaScript
x
7
1
function handleFileLoad(event){
2
var baseText = event.target.result;
3
var splitString = baseText.split("rn");
4
5
console.log(splitString)
6
}
7
This is my current code so it currently splits the original text into the array properly but the output is like this
JavaScript
1
10
10
1
0: "Name,Percent"
2
•
3
1: "Eddie,65.95"
4
•
5
2: "Alice,56.98"
6
•
7
3: "Delmar ,96.1"
8
•
9
4: "Edmund ,78.62"
10
when I want it like
JavaScript
1
10
10
1
0: "Name" "Percent"
2
•
3
1: "Eddie" "65.95"
4
•
5
2: "Alice" "56.98"
6
•
7
3: "Delmar" "96.1"
8
9
4: "Edmund" "78.62"
10
Advertisement
Answer
Add this code:
JavaScript
1
4
1
for(let i = 0; i < splitString.length; i++){
2
splitString[i] = splitString[i].split(",")
3
}
4