嗨,所有的安卓开发者,
你能帮我在android中使用比较通配符吗?
示例:
数字
if( 6.7890666 = 6.789* ){
"Match"
}else{
"Not Macth"
}
细绳
if( "compare" = "com????" ){
"Match"
}else{
"Not Macth"
}
你能帮忙在android程序中如何编码吗
嗨,所有的安卓开发者,
你能帮我在android中使用比较通配符吗?
示例:
数字
if( 6.7890666 = 6.789* ){
"Match"
}else{
"Not Macth"
}
细绳
if( "compare" = "com????" ){
"Match"
}else{
"Not Macth"
}
你能帮忙在android程序中如何编码吗
你也可以使用
String a = "compare";
if( a.equalsIgnoreCase("com???"))
{
"Match"
}else
{
"Not Macth"
}
equalsIgnoreCase 函数不区分大小写。
如果它是一个数字,这样做,
if(123 == 123)
如果它是一个字符串这样做,
if(abc.equals(abc))
要比较字符串,您必须使用 equals。
例如
String a = "abcd";
if(a.equals("com"))
{
}