前沿拓展:
concat
concat 等同于字符串连接符 ||,
你的等价于
concat(goods_sn,goods_title,goods_brief,goods_name) LIKE '%tablet%'
good。
E2单元格内容比D2单元格多了分隔符"-",也就是TEXTJOIN函数中的第一个参数。在实际工作中,我们也可以根据需要将分隔符设为其他符号,如",""/" "*"等等。
拓展知识:
concat
Here we create two arrays and show them as one using concat():
这里我们使用了concat()将两个数组结合成了一个:
The output of the code above will be:
上面代码的输出结果为: Here we create three arrays and show them as one using concat():
我们通过使用concat()将三个数组结合成为了一个数组:
The output of the code above will be:
上面代码的结果为: var stringValue = Hello ;var result =stringValue.concat(world);alert(result);//Hello worldalert(stringValue);//Hello
原创文章,作者:九贤生活小编,如若转载,请注明出处:http://www.wangguangwei.com/31872.html