StringBuilder sb = new StringBuilder("Hello World"); int index = sb.indexOf("W"); System.out.println(index); // Output: 6
StringBuilder sb = new StringBuilder("Hello World"); int index = sb.indexOf("World"); System.out.println(index); // Output: 6The StringBuilder indexOf method is located in the java.lang package library, which is a part of the core Java library.