February 03, 2024

Java Problems Solutions: Java Remove Unwanted Characters from String


import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class StringCleaner {
    public static void main(String[] args) {
        String inputString = "Hello#123, Software Testing Space !Sub@scriber!";
        String cleanedString = removeUnwantedCharacters(inputString);
        System.out.println("Original String: " + inputString);
        System.out.println("Cleaned String: " + cleanedString);
    }
    // Java method to remove unwanted characters from a string
    public static String removeUnwantedCharacters(String input) {
        // Keep only alphabets and whitespace.
        // Define a regular expression.
        String regex = "[^a-zA-Z\\s]";
        // Compile the pattern and create a matcher with the input string.
        Matcher matcher = Pattern.compile(regex).matcher(input);
        // Replace unwanted characters with an empty string
        return matcher.replaceAll("");
    }
}

Want 1 to 1 personalized Java training? Email me at isingh30 AT gmail please. View my following video

:


No comments:

Post a Comment

Note: Only a member of this blog may post a comment.