在Excel中提取文本的确切部分

时间:2016-03-03 09:11:06

标签: excel excel-formula

我的列中包含以下类型的文字:

256 items delivered by supplier (LLC Printlogic)<br>
436 items delivered by supplier (LLC Mango)<br>
500 items shipped to supplier (Arteco Inc)<br>

如何在括号中提取值?结果应如下:

LLC Printlogic<br>
LLC Mango<br>
Arteco Inc

3 个答案:

答案 0 :(得分:2)

有许多方法可以解析文本。这是其中之一。

=REPLACE(REPLACE(A2, FIND(")", A2), LEN(A2), ""),1, FIND("(", A2), "")

replace_parse

答案 1 :(得分:0)

一种替代方案,

=MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1)&"<br>"

答案 2 :(得分:0)

另外,假设最后的字符包含在<br>中但不一定是=SUBSTITUTE(REPLACE(A1,1,FIND("(",A1),""),")","")

<br>

enter image description here

请注意,相同的公式也适用于您的原始帖子,在编辑之前以及每行末尾添加 Token[] profileLocationTokens = target.request().post(Entity.json(new Text(profileLocationText)), Token.ProfileLocationToken[].class); Token[] profileDescriptionTokens = target.request().post(Entity.json(new Text(profileDescriptionText)), Token.ProfileDescriptionToken[].class); Token[] statusTexttokens = target.request().post(Entity.json(new Text(statusText)), Token.StatusTextToken[].class);

enter image description here