在Java中编写一个函数,它接受一个字符串数组,并从字符串数组中只返回那些连续重复特定字母的字符串,例如:如果I / P是
{"Dauresselam", "slab", "fuss", "boolean", "clap"}
那么O / P应该是
{"Dauresselam", "fuss", "boolean"}
我可以使用
解决它import java.util.Scanner;
public class doubleChars {
public static String[] getDoubles(String[]In)
{
int inLen=In.length;
String zoom[]=new String[inLen];
int count=0;
if(inLen==0)
{
return zoom;
}
for(int i=0;i<=inLen-1;i++)
{
String A=In[i];
//System.out.println(A);
int striLen=A.length();
for(int j=0;j<striLen-1;j++)
{
if(A.substring(j, j+1).equals(A.substring(j+1, j+2)))
{
zoom[count]=A;
count++;
break;
}
}
}
return zoom;
}
public static void main(String[] args)
{
char more='y';
int ab=0;
String[] res={};
String[] fillMe={"durres", "murres", "", "abcdeee", "boolean", "nger", "lagger"};
Scanner strobe=new Scanner(System.in);
System.out.println("Please enter the arraye of the string");
/*while(strobe.hasNext())
{
fillMe[ab]=strobe.next();
ab++;
}
*/
res=doubleChars.getDoubles(fillMe);
for(int k=0;k<res.length;k++)
{
if(res[k]==null)
{
break;
}
System.out.println(res[k]);
}
}
}
是否有一种方法可以使用正则表达式来缩短它?
答案 0 :(得分:16)
您可以使用backreference:
([a-z])\1
的可视化
Java示例:
String[] strings = { "Dauresselam", "slab", "fuss", "boolean", "clap" };
String regex = "([a-z])\\1";
Pattern pattern = Pattern.compile(regex);
for (String string : strings) {
Matcher matcher = pattern.matcher(string);
if (matcher.find()) {
System.out.println(string);
}
}
打印:
Dauresselam
fuss
boolean