如何从Google表格中提取括号中的数字集

问题描述 投票:0回答:2

如何将这组数字(314.81 + 10.00)+0.00提取并拆分到每一列中

预期结果:

enter image description here

regex google-sheets google-sheets-formula array-formulas
2个回答
0
投票

在W1中尝试

=ARRAYFORMULA(value(split(regexreplace(V1, "\(|\)",), "+")))

看看是否可行?

enter image description here


0
投票

像这样:

=SPLIT(REGEXREPLACE(A1, "\(|\)", ), "+")

0


和ArrayFormula将是:

=ARRAYFORMULA(IFERROR(SPLIT(REGEXREPLACE(A1:A, "\(|\)", ), "+")))

0

© www.soinside.com 2019 - 2024. All rights reserved.