Remove the hashtag from an internal tag

I am using Internal Tags as a group of tags. So I have a list on songs, the {{title}} is the song title and the first #Internal-tag is the artist. So in my get/foreach I am using this

{{tags limit="1" autolink="false" visibility="internal"}}

This works perfectly fine and gives the artist with a hashtag like #Beatles but I just want to see Beatles. How can I trim off the hashtag?

I just used Javascript to remove it. Doh! too easy

var thash = document.querySelectorAll('.trimhash');
for (var i = 0; i < thash.length; ++i) {
    thash[i].innerHTML = thash[i].innerHTML.slice(1);
}