22 characters text.replaceAll(RegExp('.'), '*'); // res-6ren">
gpt4 book ai didi

string - 如何在Dart中替换字符串中所有字符(空格字符除外)

转载 作者:行者123 更新时间:2023-12-03 04:11:10 25 4
gpt4 key购买 nike

String text = "replace all characters" --> 22 characters

text.replaceAll(RegExp('.'), '*');

// result -> ********************** --> 22 characters

这样,所有字符都会更改。如何排除空格字符。
// I want it this

// result -> ******* *** ********** -> Characters 8 and 13 are empty.

最佳答案

您想要的是否定匹配项:

void main() {
String text = "replace all characters";
print(text.replaceAll(RegExp('[^ ]'), '*'));
// ******* *** **********
}
[^ ]将匹配任何非空格字符。

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

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