本文介绍了在 Excel 中提取文本的确切部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一列包含以下类型的文本:
I have a column with the following type of text in it:
256 items delivered by supplier (LLC Printlogic)<br>
436 items delivered by supplier (LLC Mango)<br>
500 items shipped to supplier (Arteco Inc)<br>
如何提取括号中的值?结果应该如下:
How to extract value in the brackets? The result should be the following:
LLC Printlogic<br>
LLC Mango<br>
Arteco Inc
推荐答案
解析文本的方法有很多种.这是其中之一.
There are a number of ways to parse text. Here is one of them.
=REPLACE(REPLACE(A2, FIND(")", A2), LEN(A2), ""),1, FIND("(", A2), "")
这篇关于在 Excel 中提取文本的确切部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!