Java indexOf 一次性处理多个字符串

发布于 2024-11-08 01:56:03 字数 143 浏览 3 评论 0原文

有没有一种方法可以在 Java 中使用 indexOf 在一次解析中查找给定文本中多个字符串的位置?

例如, 我想在一次文本解析中为“you”和“meeting”做一个indexOf “今天的会议你能参加吗?”

任何帮助将不胜感激!提前致谢

Is there a way I can use indexOf in Java to find the position of multiple strings in a given text in a single parse?

For example,
I want to do an indexOf for "you" and "meeting" in one single parse of the text
"Will you be able to attend the meeting today?"

Any help will be appreciated! Thanks in advance

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

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

发布评论

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

评论(2

<逆流佳人身旁 2024-11-15 01:56:04

正如您提出的问题:不。

但是,您可以使用带有匹配项的正则表达式 string.matches(".*(meeting|today).*")。有关正则表达式的语法,请参阅 javadoc。如果您只使用字母和数字
您可以从示例中构建模式,但某些字符需要用 \ 引用,在这样的文字中将变成 \。

As you phrase the question: no.

However you can use a regular expression with matches, string.matches(".*(meeting|today).*"). See the javadoc for the syntax on regular expressions. If you only use letters and number
you can construct the pattern from the example, but some characters need quoting with a \, which inside a literal like this would become \.

不乱于心 2024-11-15 01:56:04

如果您要在文本中搜索某些模式,请使用正则表达式。
在你的情况下,如果你想在给定的文本中找到一些字符串,我会编写一个基本函数:

public static void main(String ... args) {
    String a = "i have a little dog";
    String [] b = new String [] { "have", "dog" }; 
    locateStrings(a,b);
}

public static int [] locateStrings(String source, String [] str) {
    if (source == null || str == null || str.length == 0)
        throw new IllegalArgumentException();
    int [] result = new int [str.length];
    for (int i = 0; i < str.length ; i++) {
        result[i] = source.indexOf(str[i]);
    }
    return result;      
}

if you're searching for some patterns in your text then use regular expressions.
In your case, i would write a basic function, if you want to locate some strings in a text given:

public static void main(String ... args) {
    String a = "i have a little dog";
    String [] b = new String [] { "have", "dog" }; 
    locateStrings(a,b);
}

public static int [] locateStrings(String source, String [] str) {
    if (source == null || str == null || str.length == 0)
        throw new IllegalArgumentException();
    int [] result = new int [str.length];
    for (int i = 0; i < str.length ; i++) {
        result[i] = source.indexOf(str[i]);
    }
    return result;      
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文