gpt4 book ai didi

flutter - Dart获取每个特定字符的中间字符串

转载 作者:行者123 更新时间:2023-12-03 03:34:28 24 4
gpt4 key购买 nike

我需要获取每个“|”的字符串字符。
String type = "123|234|24";
输出应为字符串列表。
List<String> subtypes = ["123","234","24"];

最佳答案

您可以按以下方式使用拆分方法。

 String type = "123|234|24";
List<String> list = type.split('|').toList();
print(list);

关于flutter - Dart获取每个特定字符的中间字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61889007/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com