声明一个整数,将其初始化为 0,在 for 循环中,为每个字符递增它。示例实时演示public class Sample { public static void main(String args[]) { String str = new String("Hi welcome to Tutorialspoint"); int count = 0; for(int i = 0; i
要提取最后 n 个字符,只需使用 charAt() 方法打印第 (length-n) 个字符到第 n 个字符即可。示例实时演示public class ExtractingCharactersFromStrings { public static void main(String args[]) { String str = "Hi welcome to tutorialspoint"; int n = 5; int initial = str.length()-5; for(int i=initial; i
查找给定 String 中元音的一种方法是使用 charAt() 方法将 String 中的每个字符与元音字母进行比较。示例实时演示 public class FindingConsonants { public static void main(String args[]) { String str = new String("Hi Welcome to Tutorialspoint"); for(int i=0; i