Google-sheets – Google Sheets – How to extract words from a cell using regexextract

formulasgoogle sheetsregexextract

I have a spreadsheet with many rows like this:

Arkonor 16m³Crimson +5%Prime +10%Flawless +15%

Bistot 16m³Triclinic +5%Monoclinic +10%Cubic +15%

Crokite 16m³Sharp +5%Crystalline +10%Pellucid +15%

How do I extract words from these cells? Example, in the first row, I would like to extract words Arkonor, Crimson, Prime and Flawless, one in each cell if possible.

Best Answer

=TRANSPOSE(SPLIT(TRIM(SUBSTITUTE(REGEXREPLACE(REGEXREPLACE(REGEXREPLACE(
 D1,"\b\w[^A-z]*\b"," "),"\W+"," "),"[0-9]+","")," m "," "))," "))