js获取一个字符串中字母的个数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取一个字符串中字母的个数相关的知识,希望对你有一定的参考价值。
参考技术A1、JS获取字符串字母个数,使用属性:.length。
2、新建html文档,并创建<script>标签。
3、声明一个变量,并赋值一个字符串。
4、使用.length属性获取字符串长度。
5、以弹窗形式打印获取的字符串长度。
6、保存文件,查看.length得到的结果。
计算一个字符串中大写字母小写字母特殊字符数字的个数
1 public class Test_123_Test { 2 public static void main(String[] args) { 3 String str = "[email protected]#¥%……&"; 4 int bigs = 0;// 记录大写字母的个数 5 int smalls = 0;// 记录小写字母的个数 6 int others = 0;// 记录其他字符的个数 7 int shuzi = 0; 8 System.out.println(str.length()); 9 for (int i = 0; i < str.length(); i++) { 10 char str_1 = str.charAt(i);// 依次取出每个字符 11 if (‘A‘ <= str_1 && ‘Z‘ >= str_1) { 12 bigs++;// 记录大写字母 13 } else if (‘a‘ <= str_1 && ‘z‘ >= str_1) { 14 smalls++; 15 } else if (Character.isDigit(str_1)) { 16 shuzi++; 17 } else { 18 others++; 19 } 20 } 21 System.out.println("大写字母的个数:=" + bigs); 22 System.out.println("小写字母的个数:=" + smalls); 23 System.out.println("特殊字符的个数:=" + others); 24 System.out.println("数字的个数:=" + shuzi); 25 System.out.println("一共有字符:=" + str.length()); 26 } 27 }
Description: 随机的一个字符串,计算其中的每类字符的个数
* 例如:ABCDE*&^%$abcde123456计算其中大写字母、小写字母、特殊字符、数字的个数
*
* 解决思路:可以通过ascci码来解决 也可以通过character方法中的方法直接进行少选,但是首先必须把字符串拆成一个个的字符才可以
*
以上是关于js获取一个字符串中字母的个数的主要内容,如果未能解决你的问题,请参考以下文章
在一个字符串中,统计大写字母个数,小写字母个数,其他字符个数的四种算法