About 11,200,000 results
Open links in new tab
  1. Case-Insensitive String Matching in Java - Baeldung

    Jan 8, 2024 · In this tutorial, we looked at a few different ways to check a String for a substring, while ignoring the case in Java. We looked at using String.toLowerCase() and toUpperCase(), …

  2. java - Using two values for one switch case statement - Stack Overflow

    May 23, 2013 · You can use have both CASE statements as follows. case text1: . case text4:{ //blah. break; public static void main(String[] args) { int month = 2; int year = 2000; int …

  3. Java String contains() Method with Example - GeeksforGeeks

    Nov 19, 2024 · The String.contains() method is used to search for a sequence of characters within a string. In this article, we will learn how to effectively use the string contains functionality in …

  4. How to Perform Case Insensitive Matching in a Java Switch-Case ...

    Solution: Consolidate cases by converting the input instead of writing separate cases for each variation. Discover how to implement case insensitive matching in Java's switch-case …

  5. Switch Case Java String: A Guide - JA-VA Code

    Sep 28, 2023 · In Java 7 and later versions, you can use a String object as the expression in a switch statement: case "apple": System.out.println("It's an apple."); break; case "banana": …

  6. syntax - Java switch statement multiple cases - Stack Overflow

    Feb 23, 2011 · Just trying to figure out how to use many multiple cases for a Java switch statement. Here's an example of what I'm trying to do: switch (variable) { case 5..100: …

  7. Java Program to Implement switch statement on strings

    Dec 23, 2024 · In this article, you will learn how to effectively use the switch statement on strings in Java through detailed examples. Explore how to set up switch cases for strings, handle …

  8. String in Switch Case in Java - GeeksforGeeks

    Jul 11, 2022 · Given string str, the task is to write a Java program to swap the pairs of characters of a string. If the string contains an odd number of characters then the last character remains …

  9. Java Switch Case with Strings – How to Control Flow Based on String

    When using the switch case statement with string values, you can use the equals () method to compare the switch expression with the case values. For example: switch (variableName) { …

  10. java - How to do a case with multiple conditions? - Stack Overflow

    Dec 8, 2012 · Every case is normally followed by a "break;" statement to indicate where execution should terminate. If you omit the "break;", then execution will continue. You can use this to …

Refresh