Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ch6ex19;
- import java.util.Scanner;
- public class Ch6Ex19
- {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- System.out.print("Enter a sentence: ");
- String str=sc.nextLine();
- System.out.print("Enter a string to remove: ");
- String substr=sc.nextLine();
- String newStr=str.replace(substr,"");
- System.out.println(newStr);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment