gpt4 book ai didi

android - 如何在Android中将字符串逐字符转换为字符?

转载 作者:太空狗 更新时间:2023-10-29 12:50:20 26 4
gpt4 key购买 nike

我有 Edittext 字段,用户可以输入他们的名字。我想用字母表检查一个字母出现了多少次。哪种方法最好?

我尝试使用下面的代码从字符串中获取每个字符,但出现错误?如果有人能提供帮助,我将不胜感激。

name=(EditText)findViewById(gami.Numerology.R.id.inputUI);
String a=name.getText().toString();

for ( int i = 0; i < a.length(); i++ )

{
c = a.charAt(i);

if (c=='s')
{
s=1; //like this for all characters
}

}

我只是把它放在按钮的点击事件中。

最佳答案

 //declare the original String object
String strOrig = "Hello World";
//declare the char array
char[] stringArray;


//convert string into array using toCharArray() method of string class
stringArray = strOrig.toCharArray();

//display the array
for(int index=0; index < stringArray.length; index++)
//check of character appearance

关于android - 如何在Android中将字符串逐字符转换为字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12768408/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com