Heim  >  Artikel  >  Datenbank  >  Given two strings S1 and S2. Delete from S2 all those charac

Given two strings S1 and S2. Delete from S2 all those charac

WBOY
WBOYOriginal
2016-06-07 15:42:581176Durchsuche

Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted. public class StringManipulation { public static void main(String args[]) { String s

 Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

 

 

 

 

 

public class StringManipulation {

 public static void main(String args[]) {

  String s1 = "ba";
  String s2 = "cbaaaabbcaaaa";
  
  
  for (int i = 0; i    for (int j = 0; j>=0 && s2.length()>0 &&j    
    while(s1.charAt(i) ==s2.charAt(j)){//处理连续状况
     s2 = s2.substring(0, j) + s2.substring(j + 1);
       j--;
       System.out.println(s2+s2.length()+"  "+j);
       if(j        if(s2.equals(""))break;
    }
   }
  }

  System.out.println(s2+"!!!");

 }

}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn