我有以下数据:
http://example1.com anchor text 1
http://example2.com anchor text 2
http://example3.com anchor text 3
我希望输出是:
http://example1.com anchor text 1 <a href="http://example1.com">anchor text 1</a>
http://example2.com anchor text 2 <a href="http://example1.com">anchor text 2</a>
http://example3.com anchor text 3 <a href="http://example1.com">anchor text 3</a>
我尝试使用代码来用单元格 C1 替换单元格 A1 和 B1,如下所示:
="<a href="A1">B1</a>"
但是,由于 HTML 代码中的等号和双引号,我遇到了错误。我尝试使用单引号来转义它,但仍然没有成功。
有人知道怎么做吗?非常感谢您的帮助。