本文实例讲述了java取两个字符串的最大交集的实现方法,分享给大家供大家参考。具体实现方法如下:
public class Game13
{
public static void main(String[] args)
{
String s1 = \"135adbfg67\";
String s2 = \"125dbf59\";
String s3 = s2;
int begin = 0;
int end = s2.length();
int i = 1;
while (!s1.contains(s3))
{
if (end == s2.length())
{
begin = 0;
end = (s2.length()) - (i++);
}
else
{
begin++;end++;
}
s3 = s2.substring(begin, end);
System.out.println(s3);
System.out.println(\"--------\");
}
System.out.println(s3);
}
}
本文地址:https://www.stayed.cn/item/3923
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我