正则表达式从搜索的值中提取字符串值偏移量?

Regex to extract a string value offset from the value searched for?

我目前正为正则表达式苦恼,我有一个具体的问题需要解决。

如果存在以首席调查官命名的值(这里是 Mr A Smith),我只想提取 Mr A Smith。我知道在所有情况下,'Mr A Smith' 前后都会有两个星号。

"**Chief Investigator:**Mr A Smith
**Sponsor**: xxxxxxxxxxx
**Study Team Contact**: xxxxxxxxx
**Grant deadline**: 
**Date EC meeting completed**: xxxxxxxxxx
**Upload Method**: xxxx

感谢收到任何想法!

尝试:

=INDEX(TRIM(SPLIT(REGEXREPLACE(A1:A, ":\*\*|\*\*:", "♥"), "♥")),,2)