Whole-text check (default): The entire input is tested as one string and the Output shows just true or false. With the default options, step on no pets returns true, while step on my pets returns false.
Line-by-line Mode: Each non-empty input line gets its own verdict in the form line → true/false. For example, the input
radar
banana
12321
produces
radar → true
banana → false
12321 → true
Empty lines are skipped, and the message below the buttons summarizes the results, for example "3 of 5 lines are palindromes."
Ignore letter case (ticked by default): Uppercase and lowercase letters are treated as equal, so Racecar counts as a palindrome. Untick this option for a strict check where Racecar returns false because of the capital R.
Ignore spaces & punctuation (ticked by default): Only letters and numbers are compared, so A man, a plan, a canal: Panama returns true. Untick this option and the comparison includes every space, comma and colon character, so that same sentence returns false.
Load an example: Adds a short sample text with palindromes and non-palindromes to the Input textarea so you can try the tool instantly without typing anything.
Upload a file: Loads the content of a plain text file from your device straight into the Input textarea.
Copy: Copies the verdicts from the Output textarea to your clipboard so you can paste them anywhere.
Download: Saves the output as a .txt file on your device.
Clear the text: Empties both the Input and Output textareas so you can start over.