gpt4 book ai didi

string - 如何删除 Dart 中字符串的所有空格?

转载 作者:IT王子 更新时间:2023-10-29 06:47:04 27 4
gpt4 key购买 nike

使用 trim() 消除 Dart 中的空白,但它不起作用。我做错了什么或者有其他选择吗?

       String product = "COCA COLA";

print('Product id is: ${product.trim()}');

控制台打印:Product id is: COCA COLA

最佳答案

这会解决你的问题

String name = "COCA COLA";
print(name.replaceAll(' ', ''));

关于string - 如何删除 Dart 中字符串的所有空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51508321/

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