我正在嘗試使用公式從表格單元格 A1:A 中的每個“哈希”中提取值,并將它們連接到單元格 B1:B 中,用逗號分隔

uj5u.com熱心網友回復:
使用regexextract(),像這樣:
=arrayformula(
textjoin(
",",
true,
iferror(
regexextract(
query(
transpose( split(A2, "," & char(10), true, true) ),
"where Col1 contains 'hash' ", 0
),
"hash"":""(\w )"
)
)
)
)
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/487367.html
