
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Search for a Substring from a Specified Index in Java
Use the indexOf() method to search for a substring from a given position.
Let’s say the following is our string.
String myStr = " pqrstuvwxyzpqrst";
Searching for the substring “pqrs” in the string. We are beginning the index from 3 for our search.
int begnIndex = 3; strLastIndex = myStr.indexOf("pqrs", begnIndex);
Example
public class Demo { public static void main(String[] args) { String myStr = "pqrstuvwxyzpqrst"; int strLastIndex = 0; int begnIndex = 3; System.out.println("String: "+myStr); strLastIndex = myStr.indexOf("pqrs", begnIndex); System.out.println("The index of substring pqrs in the string beginning from index "+begnIndex+" = "+strLastIndex); } }
Output
String: pqrstuvwxyzpqrst The index of substring pqrs in the string beginning from index 3 = 11
Advertisements