...

/

Challenge: Basic String Manipulation

Challenge: Basic String Manipulation

Develop an application for string manipulation, including counting characters, converting them to lowercase, and determining character occurrences using TDD.

We'll cover the following...

Task and requirements

You’re given a string containing a sentence. Your task is to create a Java program that performs the following operations:

  1. Count the total number of characters in the sentence, excluding spaces.

  2. Convert the sentence ...