LoslegenKostenlos loslegen

Regular expressions

You are managing inventory for an electronics store, and you noticed that some product names have special characters. Regular expressions (regex) allow you to search text for patterns to remove these special characters. Develop a regex pattern to remove any characters that are not lower or upper case letters, or spaces.

Diese Übung ist Teil des Kurses

Cleaning Data in Java

Kurs anzeigen

Anleitung zur Übung

  • Complete the regex pattern to exclude lower or upper case letters, and spaces.
  • Remove any character that is not a letter or space from messyProduct.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

public class ProductDataExample {
	public static void main(String[] args) {
    	String messyProduct = "Headphones *(Wireless)*";
        
        // Complete the regex pattern to exclude lower or upper case letters or spaces
        String regex = "[^____]";
        
        // Remove any character that is not a letter or space
        String cleanedProduct = ____.____(regex, "");
        System.out.println(cleanedProduct);
    }
}
Code bearbeiten und ausführen