public class StringExample { String msg = "The quick brown fox jumps over the lazy dog."; public static void main(String[] args) { System.out.printf( "文字 'a' は %d 文字目に現れます。%n", msg.indexOf('a')); // ... } }