String
Posted 香菇炖小鸡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String相关的知识,希望对你有一定的参考价值。
假设有字符串“uyde87dw3n8AU7au9”,统计其中数字的个数
package zix; public class Xx { public static void main(String[] args) { String str="uyde87dw3n8AU7au9"; String[] str1=new String[str.length()]; int num=0; for(int i=0;i<str1.length;i++){ if(str.charAt(i)>=\'0\' && (str.charAt(i))<=\'9\'){ num++; } } System.out.println("数字个数:"+num); } }
运行结果:
以上是关于String的主要内容,如果未能解决你的问题,请参考以下文章
Failed to convert property value of type ‘java.lang.String‘ to required type ‘int‘ for property(代码片段
java.lang.NullPointerException: Attempt to invoke virtual method ‘int android.database.sqlite异常(代码片段