gpt4 book ai didi

Android 方法 TextUtils.regionMatches

转载 作者:行者123 更新时间:2023-11-29 18:07:54 27 4
gpt4 key购买 nike

我找到了这个 android 方法 TextUtils.regionMatches

但由于某些原因,所以不清楚这个函数是如何工作的。

函数可以在这里找到: http://developer.android.com/reference/android/text/TextUtils.html#regionMatches%28java.lang.CharSequence,%20int,%20java.lang.CharSequence,%20int,%20int%29

这里是这个方法的基本代码, http://androidxref.com/4.1.1/xref/frameworks/base/core/java/android/text/TextUtils.java#220

感谢那些可能会阐明函数调用方式的人。

最佳答案

public static boolean regionMatches (CharSequence one,
int toffset, CharSequence two, int ooffset, int len)

示例代码:

CharSequence one = "asdfQWERTYc1234";
CharSequence two = "ghjklzxcQWERTYg7890kl";
boolean match = TextUtils.regionMatches(one, 4, two, 8, 6);

匹配为真。

解释:

在charsequence one中,从toffset (4)开始,得到的字符个数等于len (6) => QWERTY

在charsequence 2中,从ooffset (8)开始,得到的字符个数等于len (6) => QWERTY

两个字符序列匹配,因此该方法返回 true。

关于Android 方法 TextUtils.regionMatches,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12423449/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com