Javatpoint Logo
Javatpoint Logo

Toggle String in Java

In Java, a toggle string is a string where the case of each character is flipped. All uppercase letters become lowercase, and all lowercase letters become uppercase. For example, if the input string is "HelloWorld," the output of toggling its characters would be "hELLOwORLD."

In this section, we will explore how to implement the toggle string functionality in Java and provide a complete code example with a step-by-step explanation.

Algorithm for Toggle String:

  1. Start by reading the input string from the user.
  2. Iterate through each character in the string.
  3. Check if the character is an uppercase letter or a lowercase letter.
  4. Toggle the case of the character and add it to the result string.
  5. Continue the process until all characters have been processed.
  6. Display the toggled string as output.

ToggleStringExample.java

Output:

Enter a string: Helloworld
Toggled String: hELLOWORLD

Explanation

  1. We begin by importing the Scanner class to read input from the user.
  2. In the main() method, we create a new Scanner object named scanner to read input from the user.
  3. We prompt the user to enter a string using the System.out.print() statement.
  4. The user's input is read using the nextLine() method of the Scanner class, and the entered string is stored in the variable inputString.
  5. The scanner is then closed to release any associated system resources.
  6. We call the toggleString() method to obtain the toggled version of the input string.
  7. In the toggleString() method, we create a StringBuilder named result to store the toggled string.
  8. We use a for-each loop to iterate through each character of the input string.
  9. Inside the loop, we check whether the character is an uppercase letter using Character.isUpperCase(ch).
  10. If the character is an uppercase letter, we convert it to lowercase using Character.toLowerCase(ch) and append it to the result string using result.append().
  11. If the character is a lowercase letter, we convert it to uppercase using Character.toUpperCase(ch) and append it to the result string.
  12. If the character is neither an uppercase nor a lowercase letter (e.g., a digit or a special character), we simply append it to the result string as it is.
  13. After processing all characters, the toggled string is obtained by calling result.toString().
  14. Finally, we print the toggled string using the System.out.println() statement.

Toggle String without StringBuilder:

While using StringBuilder is a common and efficient approach, you can achieve the toggle string functionality without it. One way is to use a character array to store the toggled characters and then convert it back to a string. However, this approach may require additional steps and might not be as concise as using StringBuilder.

Toggling Without Conditionals:

Besides using if-else or the ternary operator, there are other creative ways to toggle characters without explicit conditionals. One such approach is using bitwise operations. In Java, you can use XOR (^) with the ASCII value of the character '32' (the difference between uppercase and lowercase letters) to toggle the case.

Conclusion

In this post, we covered the idea of a toggle string, where each character's case is switched. Together with a comprehensive Java implementation of the feature, we also gave a thorough explanation of the algorithm. Now you can use this code to switch the case of any string and watch the results. Tasks involving text processing and data manipulation frequently make use of toggle strings. Understanding this idea and how it works in Java will be useful in a variety of programming situations.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA