java string find character code example
Example: 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);
}
}