while 循环在 Android 中不起作用,但在普通 Java 类中起作用?
您好,我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在没有更多信息的情况下,我能想到的就是注意输入和模式上的大小写敏感性,并且您的 while 循环是一个很好的证据;您的
matcher.find()
根本没有找到匹配项。正如文档
:
参数:
退货:
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 thedocumentation
:Parameters:
Returns: