Answers for "java search string for character"

1

java search string in string

You can use contains(), indexOf() and lastIndexOf() method to check if one String contains another String in Java or not. If a String contains another String then it's known as a substring. The indexOf() method accepts a String and returns the starting position of the string if it exists, otherwise, it will return -1.
Posted by: Guest on September-19-2021
0

how to search for charecters in java

public class Test {
   public static void main(String args[]) {
      String str = new String("I81753490B9C/DQC");
      int index = str.indexOf('DQC');
      System.out.println("Index of the letter w :: "+index);
   }
}
Posted by: Guest on November-09-2020

Code answers related to "java search string for character"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language