本文介绍了你如何连接两个值与之间的空间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图连接两个字符串用空格之间如下:
I am trying to concatenate two strings with a space in between as follows:
if(searchSymbol.toLowerCase().contains(mSearchView.getText().toString().toLowerCase()) + "HERE COMES THE SPACE" +searchSymbol.toLowerCase().contains(mSearchView.getText().toString().toLowerCase()) )
{}
我只是不知道如何定义相同?我应该使用(1弦&放大器;&功放; +&放大器;&放;+第2个字符串)。任何帮助AP preciated。
I am just not sure how to define the same? should I use (1st string&&+""&&""+ 2nd string). Any help appreciated.
谢谢!
贾斯汀
Thanks!Justin
推荐答案
您的if语句是有点混乱读
Your if statement is a little confusing to read
我想将其更改为
String text = string1 + " " + string2;
if(text.equals("string3")){
}
,
不是空间,而是,
是一个空格
""
is not a space but " "
is a space
这篇关于你如何连接两个值与之间的空间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!