
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
Locate Substring in a String in Java
To locate a substring in a string, use the indexOf() method.
Let’s say the following is our string.
String str = "testdemo";
Find a substring ‘demo’ in a string and get the index.
int index = str.indexOf( 'demo');
Example
public class Demo { public static void main(String []args) { String str = "testdemo"; System.out.println("String: "+str); int index = str.indexOf("demo"); System.out.printf("Substring 'demo' is at index %d\n", index); } }
Output
String: testdemo Substring 'demo' is at index 4
Advertisements