Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将数组元素逐行打印到文本字段中。我试过但失败了
bulunanliste.text = secilenkelime.toString("\n");
试试 Array'join()方法:
join()
bulunanliste.text = secilenkelime.join("\n");