我有一张背景图片,文件名中有一个括号:
<DIV style="BACKGROUND: url('http://site.com/image(8).png');"></DIV>
这通常很好,并且没有混淆,因为文件名周围有引号。
然而,在IE的开发工具中,我发现浏览器出于某种原因删除了引号。
<DIV style="BACKGROUND: url(http://site.com/image(8).png);"></DIV>
尽管如此,它还是有效的,所以没什么大不了的。当我尝试使用jquery的克隆函数
int FROMcountryChooseId=10;
String ToConvert = (EditView)findViewById(R.id.NumberEditView);
String query="SELECT DISTINCT trim(Country.Country) FROM Country,DCI WHERE Country.CountryN°= "+FROMcountryChooseId+ " AND Country.Country LIKE "+"'&ToConvert&'"+"
我只是做了一些工作,并对结果感到惊讶。让我解释一下。
String str = "aaa.jpg";
String[] str1 = str.split("."); //output of this is empty array with size 0
str.contains("."); //output of this is true.
谁能解释一下,为什么split()方法不能识别".",其中contains()可以识别"."。