
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 a Character in a String in Java
To locate a character in a string, use the indexOf() method.
Let’s say the following is our string.
String str = "testdemo";
Find a character ‘d’ in a string and get the index.
int index = str.indexOf( 'd');
Example
public class Demo { public static void main(String []args) { String str = "testdemo"; System.out.println("String: "+str); int index = str.indexOf( 'd' ); System.out.printf("'d' is at index %d, index); } }
Output
String: testdemo 'd' is at index 4
Let us see another example. The method returns -1, if the character isn’t found −
Example
public class Demo { public static void main(String []args) { String str = "testdemo"; System.out.println("String: "+str); int index = str.indexOf( 'h' ); System.out.printf("'h' is at index %d, index); } }
Output
String: testdemo 'h' is at index -1
Advertisements