前沿拓展:
concat
concat 等同于字符串連接符 ||,
你的等價于
concat(goods_sn,goods_title,goods_brief,goods_name) LIKE '%tablet%'
good。
E2單元格內(nèi)容比D2單元格多了分隔符"-",也就是TEXTJOIN函數(shù)中的第一個參數(shù)。在實際工作中,我們也可以根據(jù)需要將分隔符設為其他符號,如",""/" "*"等等。
拓展知識:
concat
Here we create two arrays and show them as one using concat():
這里我們使用了concat()將兩個數(shù)組結合成了一個:
The output of the code above will be:
上面代碼的輸出結果為: Here we create three arrays and show them as one using concat():
我們通過使用concat()將三個數(shù)組結合成為了一個數(shù)組:
The output of the code above will be:
上面代碼的結果為: var stringValue = Hello ;var result =stringValue.concat(world);alert(result);//Hello worldalert(stringValue);//Hello
原創(chuàng)文章,作者:九賢生活小編,如若轉載,請注明出處:http:///31872.html