Array cannot read Greek characters
Hello,
I am making a simple app for Greek texts. I try to store my words in an array but they cannot be read at all.
I use a super simple code for this.`ublic TextAsset textfile;
public string[] textlines;
void Start () {
textlines = textfile.text.Split ('\n');
}
Comment
Best Answer
Answer by fares57 · Dec 09, 2015 at 09:19 AM
Solved: Just forgot to save my .txt file as UTF-8 (which supports greek chars)