如何将目标属性添加到锚标签以在新选项卡或窗口中打开超链接?

I have the code below to make part of my rss feed a hyperlink but how to i change this to make the link open in a new tab or a new window.

print "<a href=\"$this->link\">";

I tried adding target="_blank"but was not sure how to add it.

print "<a href=\"$this->link\" target=\"_blank\">";
print "<a href='$this->link' target='_blank'>";