An open API service indexing awesome lists of open source software.

https://github.com/nivasharmaa/palindrome-wizard

A Java program for determining whether a given string is a palindrome. Features user input handling, case insensitivity, and ignores spaces and punctuation.
https://github.com/nivasharmaa/palindrome-wizard

conditional-statements java string-manipulation user-input

Last synced: 9 months ago
JSON representation

A Java program for determining whether a given string is a palindrome. Features user input handling, case insensitivity, and ignores spaces and punctuation.

Awesome Lists containing this project

README

          

# Palindrome Wizard

## Overview
Palindrome Wizard is a Java program designed to determine whether a given string is a palindrome. A palindrome is a string that reads the same forwards and backwards, ignoring spaces, punctuation, and capitalization. This program provides a simple and efficient way to check for palindromes using string manipulation and algorithmic techniques.

## Features
- **User Input**: Prompts the user to input a string to be checked.
- **Palindrome Check**: Determines if the input string is a palindrome.
- **Case Insensitivity**: Ignores case when checking for palindromes.
- **Whitespace and Punctuation Ignorance**: Ignores spaces and punctuation during the palindrome check.

## Concepts Covered
- String Manipulation
- Algorithm Implementation
- User Input Handling
- Conditional Statements