获取文本中给定短语的所有字符索引的最佳方法

发布于 2024-12-17 02:17:10 字数 123 浏览 2 评论 0原文

获取给定文本字符串的搜索短语的所有字符位置的最佳方法是什么?

例如,假设我们有“红猫正在看着停在红色停车标志处的红色汽车”

INPUT:“red” 输出:[5,29,52]

What is the best way to get all character positions of a search phrase for a given string of text?

For example, say we have "the red cat is watching the red car stopped at the red stop sign"

INPUT: "red"
OUTPUT: [5, 29, 52]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

许久 2024-12-24 02:17:10

您可以使用 indexOf方法:

String haystack = "the red cat is watching the red car stopped at the red stop sign";
String needle = "red";
int idx = 0, pos;
while( (pos = haystack.indexOf(needle,idx)) != -1) {
        System.out.println(pos+1);
        idx += pos+1;     
}

查看

You can use the indexOf method of the string class:

String haystack = "the red cat is watching the red car stopped at the red stop sign";
String needle = "red";
int idx = 0, pos;
while( (pos = haystack.indexOf(needle,idx)) != -1) {
        System.out.println(pos+1);
        idx += pos+1;     
}

See it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文