while 循环在 Android 中不起作用,但在普通 Java 类中起作用?

发布于 2024-10-31 11:25:58 字数 93 浏览 1 评论 0原文

您好,我在 getAmatch() 函数中的 while 循环遇到问题,

它不会进入 android 中的 while 循环,而是进入普通的 Java 类。

Hi I am having a problem with my while loop in the getAmatch() function

It doesn't enter the while loop in android but enters in a normal Java class.

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

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

发布评论

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

评论(1

末蓝 2024-11-07 11:25:58

在没有更多信息的情况下,我能想到的就是注意输入和模式上的大小写敏感性,并且您的 while 循环是一个很好的证据;您的 matcher.find() 根本没有找到匹配项。正如文档

参数:

开始:输入中的索引
查找操作即将开始。如果
这小于开始
区域,会自动调整
到那个值。如果已经超出了终点
的区域,该方法将失败。

退货:

true if (and only if)** a match has been found.

All I can say off the top of my head without a bit more information is watch your case sensitivity on both input and patterns, and your while loop is a good piece of evidence; your matcher.find() is simply not finding a match. As it states in the documentation:

Parameters:

start: The index in the input at which
the find operation is to begin. If
this is less than the start of the
region, it is automatically adjusted
to that value. If it is beyond the end
of the region, the method will fail.

Returns:

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