gpt4 book ai didi

flutter - 如何从列表中删除字符串的最后一个字母? Dart

转载 作者:行者123 更新时间:2023-12-05 00:54:04 27 4
gpt4 key购买 nike

大家好,我正在尝试从列表中删除或隐藏最后一个字母

有什么办法吗?

Text(list[i].name,
style: GoogleFonts.poppins(
fontWeight: FontWeight.w400,
color:
list[i].isBook == "0"
? selectedTimingSlot[i] ? WHITE : BLACK
: Colors.grey.withOpacity(0.5),
fontSize: 15,
),
),

**以上代码显示=“12:00 AM”我需要隐藏或删除“AM”**

最佳答案

使用substring方法:

main() {
print("12:00 AM".substring(0,5));
}

或者用replaceAll方法:

main() {
print("12:00 AM".replaceAll("AM","").replaceAll("PM",""));
}

使用正则表达式:

main() {
var regex = new RegExp(r'[a-zA-Z]');
print("02:00 AM".replaceAll(regex,""));
}

关于flutter - 如何从列表中删除字符串的最后一个字母? Dart ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66729494/

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