简体   繁体   中英

split a string and save sub strings in list in dart

I have a long String that contains comma-separated values. How can I split that string and save those substrings into List in dart/Flutter? 在此处输入图像描述

Please help me to do this

String myname = dd.data.toString();

You can use split for this.

String s = "a,b,c,d,e";

List<String> list = s.split(",");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM