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