从 Cell 中提取某些数据信息
Pulling certain data information out of a Cell
Cheetah Piss - (3.5g) - Artizen
尝试使用能够定位 () 内信息的函数,因此在本例中为 3.5g。我似乎无法获得拉动它的功能,我已经完成了一些工作或 1 个一半。
使用正则表达式:
=REGEXEXTRACT(A1; "\((.*)\)")
对于数组:
=ARRAYFORMULA(IFERROR(REGEXEXTRACT(A1:A; "\((.*)\)")))
. - one single character
.* - all of it
(.*) - get everything
\( - escaped parenthesis
\) - escaped parenthesis
\((.*)\) - get everything inside parenthesis
Cheetah Piss - (3.5g) - Artizen
尝试使用能够定位 () 内信息的函数,因此在本例中为 3.5g。我似乎无法获得拉动它的功能,我已经完成了一些工作或 1 个一半。
使用正则表达式:
=REGEXEXTRACT(A1; "\((.*)\)")
对于数组:
=ARRAYFORMULA(IFERROR(REGEXEXTRACT(A1:A; "\((.*)\)")))
. - one single character
.* - all of it
(.*) - get everything
\( - escaped parenthesis
\) - escaped parenthesis
\((.*)\) - get everything inside parenthesis