Extract two words from a cell in to another cell in google spreadsheet

后端 未结 1 426
别那么骄傲
别那么骄傲 2020-12-22 04:37

I am new to google spreadsheets & want to copy class names mentioned in range c10 in to b3. I am trying to use following formula which I know is wrong:

=         


        
相关标签:
1条回答
  • 2020-12-22 05:19

    There may be easier ways, but try (in B3):

    =join(" ", regexextract(C10, "class="&char(34)&"(.+?)"&char(34)&">.+class="&char(34)&"(.+?)"&char(34)&">"))
    
    0 讨论(0)
提交回复
热议问题