gpt4 book ai didi

regex - 如何在Dart中不区分大小写的正则表达式中使用变量

转载 作者:行者123 更新时间:2023-12-03 04:15:30 33 4
gpt4 key购买 nike

我想查找一个字符串中有多少个特定单词匹配。我希望将要搜索的单词作为变量而不是字符串提供。搜索应不区分大小写。

我可以使用变量来工作:

String text = "here is some text and SOME more words";
String word = "some";

RegExp pattern = RegExp(word);
Iterable matches = pattern.allMatches(text);
print(matches.length); // prints 1 but want 2.

但是我不确定如何增加不区分大小写。 JavaScript样式 /iRegExp(word, "i")不起作用。

Dart文档显示了一个名为 isCaseSensitive的属性,但显示为 read-only
https://api.dartlang.org/stable/2.7.0/dart-core/RegExp-class.html

最佳答案

看起来您可以设置isCaseSensitive。您可以在RegExp方法的构造函数中看到该参数。
https://api.dartlang.org/stable/2.7.0/dart-core/RegExp-class.html

String text = "here is some text and SOME more words";
String word = "some";

RegExp pattern = RegExp(word, caseSensitive: false);
Iterable matches = pattern.allMatches(text);
print(matches.length); // correctly prints 2.

关于regex - 如何在Dart中不区分大小写的正则表达式中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59259463/

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