如果单元格中的每一行都用a分隔 LineFeed
通常情况下,通常是这样的:
=MID(A2,SEARCH("Major",A2),FIND(CHAR(10),A2,SEARCH("Major",A2))-SEARCH("Major",A2))
为了详细说明它是如何工作的,我将不解释不同的函数如何工作 - MID,FIND,SEARCH和LEN,因为它们在Excel帮助中有解释。如果你不理解它们,那么解释可能没有意义。
MID(A2, startPoint_of "Major", length_of_the_whole_phrase)
SEARCH: Find the place where "Major" starts. (case insensitive)
FIND: Finding CHAR(10) which is the line feed character.
Using the SEARCH "Major" term to define the starting point of the SEARCH,
so that it will be the linefeed that next follows "Major"
The difference between the startpoint of "Major" and the subsequent
linefeed will be the length of the phrase
如果您可能想要找到任何组件,则必须考虑到最后一行之后可能没有换行的事实。因此,对于寻找下一个换行的公式的一部分,我们用一个 IFERROR
函数用A2的整个内容的长度替换该数字,以防它找不到换行符;我们还用单元格引用替换“Major”,这样我们就可以改变我们想要的东西。
下面的公式版本使用绝对引用来引用 A2
,但是如果要拖动公式,可能需要将其更改为混合形式。
在下面的公式中,搜索词组将输入A4,并且可以是任何订单项。
=MID($A$2,SEARCH(A4,$A$2),IFERROR(FIND(CHAR(10),$A$2,SEARCH(A4,$A$2)),LEN($A$2))-SEARCH(A4,$A$2))