Palindrome tester with Java, ignoring spaces and punctuation

后端 未结 7 1357
忘了有多久
忘了有多久 2021-01-07 04:26

I have the program made up until the point where it has to ignore and punctuations and spaces in the thread and I was wondering if anyone could help me with the coding for t

相关标签:
7条回答
  • 2021-01-07 04:41

    This is the programming assignment from the Java Software Solutions (PP3.11) that I assign my students. Ironically the teacher solution uses Character.isLetterOrDigit(___) (which is never mentioned in the book) and uses methods to get rid of spaces and punctuation (having not even taught methods at that point in the book), and char is not an official part of the AP CS subset. Silly publishers.

    0 讨论(0)
  • 2021-01-07 04:46

    This code for determine if a word is a palindrome can be much more simplified. Find updated Code

    String word;
    int z;
    int y = 0;
    int i = 0;
    
    char letter;
    
    Scanner input = new Scanner(System.in);
    
    System.out.print("Enter a word: ");
    word = input.nextLine();
    
    word = word.replaceAll("\\s+", "");
    word = word.toLowerCase();
    
    z = word.length()-1;
    while (i <= z){
    
        if ((letter = word.charAt(i)) == (letter = word.charAt(z-i))){
            y += 1;
        }
        i += 1;
    }
    
    if (y == (z+1)){
        System.out.println("The word IS a palindrome");
    }
    else{
        System.out.println("The word is NOT a palindrome");
    }
    
    }
    }
    
    0 讨论(0)
  • 2021-01-07 04:47

    Just to clarify what Jim Garrison said, the regex you need is the following

    String m = "Madam, I'm'',.,.''   Adam";
    m = m.toLowerCase().replaceAll("\\W", "");
    

    This will leave only letters and digits and remove whitespace and punctuation, i.e. m will become "madamimadam" and you can run you regular palindrome test on that string.

    You can learn more about regular expressions here

    0 讨论(0)
  • 2021-01-07 04:48

    You could simplify the code significantly by removing all the spaces and punctuation before you start. Look at String.replaceAll(regex,replacement). You would write a regular expression to match blanks and punctuation, and provide an empty string ("") as the replacement. This will return a new string containing the original minus the characters you want to ignore.

    0 讨论(0)
  • 2021-01-07 04:51

    This looks like a really old post but I think I stumbled upon a simpler solution for a palindrome test. This checks the first and last characters and moves inwards and exits the program as soon as the characters do not match.

    public class CharTest {
        public static void main(String[] args) {
                 //converts string to lowercase and replaces everything except numbers
                 // and alphabets
            String s = "Niagara. O roar again!".toLowerCase().replaceAll("\\W", "");
            int j=0;
            int k = s.length() - 1;
            while(j < s.length() / 2) { //loops until half the length of the string if 
                                            //even and floor value if odd.
                if (s.charAt(j++) != s.charAt(k--)){//check for first and last chars                                                                                                
                                                  //and  go inwards. if char do not match print 'Not a Palindrome' and exit 
                    System.out.println("Not a Palindrome");
                System.exit(0);}
            }
            System.out.println("Palindrome");  //if every chars match print "Palindrome"
        }
    }
    
    0 讨论(0)
  • 2021-01-07 05:01

    Your Problem: You are not ignoring the case of the letters. So if you try Able was I, ere I saw Elba, it will not come back correctly, although it is a true palindrome.

    0 讨论(0)
提交回复
热议问题