Now I have a String like this
it is #1, or #2, or #3
I want to transfer it to this:
it is < a href="/1">#1< /a>, or #< a href="/2">#2< /a>, or < a href="/3">#3< /a>
So I want to replace the word "#{num}" to "< a href="/{num}">#{num}< /a>"
What shall I do?
href="/1"in all 3 cases?