根據子串匹配查找並傳回值

根據子串匹配查找並傳回值

是否有公式或腳本可以匹配另一列中一列的子字串並返回子字串匹配的完整值?例如

輸入

COL_a            COL_b
name             201284_blah_year.ext
address          407284_blah_name.xml
journal          501283_blah_journal_entries.ott
journal_entries  701284_blah_type.dat
year             401184_blah_journal.ext
type             301287_blah_address.txt

所需輸出

COL_a            COL_b
name             407284_blah_name.xml 
address          301287_blah_address.txt
journal          401184_blah_journal.ext 
journal_entries  501283_blah_journal_entries.ott 
year             201284_blah_year.ext 
type             701284_blah_type.dat

答案1

C欄,寫出下面的公式:-

=VLOOKUP("*_"&A2&".*",B:B,1,FALSE)

然後將其拖到最後。

為了您快速參考,以下是我的螢幕截圖

在此輸入影像描述

相關內容