Seperate Number from Text

Viewed 32

I'm working in google sheets and I need to separate 876,87.689APPLES into 876,87.689 and APPLES, in two different fields.

With the command

=value(regextract(field,"-*\d*\.?\d+")), 

I get 876,87,689

It ignores the fact that its a decimal number.

I don't know why it doesn't work.

1 Answers

try:

={REGEXEXTRACT(A1, "[0-9,\.]+"), REGEXREPLACE(A1, "[0-9,\. ]+", )}

enter image description here

Related