我是谷歌电子表格的新手。想要将范围c10中提到的类名复制到b3中。我正在尝试使用以下公式,我知道这是错误的:
=query(C3:C52, "copy class name where C contains 'class' in cell c10 ")
C10单元格包含以下数据:
<body bgcolor="beige" class="body"> <div class="big_wrapper">
我希望在单元格b3中出现两个单词:
body big_wrapper
请纠正以上公式。
为了更清晰,请访问以下链接的表1:
https://docs.google.com/spreadsheets/d/1HfgOqprc-P34vOI-nGAionllrGAOsMOVuLB5ozboWBY/edit#gid=0
答案 0 :(得分:1)
可能有更简单的方法,但尝试(在B3中):
=join(" ", regexextract(C10, "class="&char(34)&"(.+?)"&char(34)&">.+class="&char(34)&"(.+?)"&char(34)&">"))