Java indexOf 一次性处理多个字符串
有没有一种方法可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如您提出的问题:不。
但是,您可以使用带有匹配项的正则表达式 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 \.
如果您要在文本中搜索某些模式,请使用正则表达式。
在你的情况下,如果你想在给定的文本中找到一些字符串,我会编写一个基本函数:
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: