Google 表格,提取单元格中的某些部分并连接信息

Google Sheets, extracting some part in the cell and concatenate information

我想从 A1 获取一些信息并用它生成 link。

A1:FA-TI7176632 | NF-TTS9482154 |阶段:6 | FA-OR7163850 | MT-TOR9475520

> ="https://worldinternal.com:8235/clinetpage.html?testid="+(A1, "FA-TI\d+))")
#generate the link in B1 with the part of A1

我只需要A1中的“FA-TI7176632”信息,想把它添加到最后的link中。请帮我。谢谢!

=HYPERLINK("https://worldinternal.com:8235/clinetpage.html?testid=" &REGEXEXTRACT(A1,"FA-TI\d+"),REGEXEXTRACT(A1,"FA-TI\d+"))

使用:

="https://worldinternal.com:8235/clinetpage.html?testid="&
 REGEXEXTRACT(A1, "FA-TI\d+")