1. 程式人生 > >牛客網在線編程:公共字符

牛客網在線編程:公共字符

str for ava 包含 rate substring sub imp student

題目描述:

輸入兩個字符串,從第一字符串中刪除第二個字符串中所有的字符。例如,輸入”They are students.”和”aeiou”,則刪除之後的第一個字符串變成”Thy r stdnts.”
輸入描述:
每個測試輸入包含2個字符串
輸出描述:
輸出刪除後的字符串
示例1
輸入

They are students. aeiou
輸出

Thy r stdnts.

思路:

字符串操作處理。contains函數,replace,replaceAll,subString等。這個題有待繼續看,沒有熟練掌握字符串操作

 1 import java.util.*;
 2 public class Gonggongzifu {
3 4 public static void main(String[] args) { 5 // TODO Auto-generated method stub 6 Scanner sc = new Scanner(System.in); 7 String str1 = sc.nextLine(); 8 String str2 = sc.nextLine(); 9 sc.close(); 10 int len1 = str1.length(); 11 int len2 = str2.length();
12 13 for(int i = 0; i < len2;i++){ 14 str1 = str1.replaceAll(str2.substring(i,i+1), ""); 15 } 16 System.out.println(str1); 17 18 } 19 20 }

牛客網在線編程:公共字符