如何在 Java 字符串中计算字符数?


声明一个整数,将其初始化为 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<str.length(); i++) {
         count++;
      }
      System.out.println("Number characters in the given string (including spaces) "+count);
   }
}

输出

Number characters in the given string (including spaces) 28

更新于:20-2-2020

672 条评论

开启您的 职业生涯

完成课程以获得认证

开始学习
广告