查看此代码
String input="I use this method";
String word=input.replaceAll(" ","/");
char buf[]=word.toCharArray();
但我想采用另一种方法来做到这一点?
答案 0 :(得分:3)
这是我发现将包含空格的字符串转换为java中的char数组的最简单方法。
String input = "I use this method";
char[] buf = input.toCharArray();
看起来你做得对,但用replaceAll(" ", "/")
答案 1 :(得分:1)
从你的问题我假设你想保存字符串而不截断char数组中的空格。
如果你删除了行" 字符串字= input.replaceAll(""," /"); "从你的代码。然后你的代码将完美地工作.PFB一个示例代码,可以帮助您更好地理解这一点
public static void main(String[] args)
{
String input="I use this method";
System.out.println(input.length()); //length of string before converting to char array
//String word=input.replaceAll(" ","/");
char buf[]=input.toCharArray();
System.out.println(buf.length);//length of string after converting to char array
for(int i=0;i<buf.length;i++){
System.out.print(buf[i]); /// Print the values in char array
}
}