Write a Java-program to Remove special characters in a given string

Write a Java-program to Remove special characters in a given string ?

Write a Java-program to Remove special characters in a given string ?

Program
import java.util.Scanner;
public class Main
{
	public static void main(String[] args) 
	{
		int x,n;
		String s;
		char ch[];
		Scanner sc=new Scanner(System.in);
		System.out.println("Enter String :");
		s=sc.nextLine();
		n=s.length();
		ch = s.toCharArray();
		for(x=0;x<n;x++)
		{
			if(!(Character.isSpaceChar(ch[x]) || Character.isDigit(ch[x]) || Character.isLetter(ch[x])) )
			{
				continue;
			}
			System.out.print(ch[x]);
		}
		

	}

}
	

Output:

Enter String : sateesh@!@#
sateesh





More Questions


8 . Write a Java-program to Remove consonants in a given string ?
9 . Write a Java-program to Remove special characters in a given string ?
10 . Write a Java-program to Remove spaces in a given string ?
11 . Write a Java-program to Remove letters in a given string ?
12 . Write a Java-program to Remove numbers in a given string ?
13 . Write a Java-program to print duplicate characters from the string ?
14 . Write a Java-program to print unique(distinct (or non-repeating characters) ) characters from the string ?
15 . Write a java program How to check if two strings are anagrams of each other?
16 . How to reverse a string in Java without using the reverse method ?
17 . How to count the occurrence of the given character in a string?
18 . How to check if a string is a palindrome?