So I have a string in which there are words like this <00asjdask>
for example
var str="hello <00dansld> this is ur system <00aldjs> and you are <00jdak>"
So I have to make the words inside brackets <>
in bold and print it inside an html page so in html page it would look like
hello < <b>00dansld<b> > this is ur system < <b> 00aldjs <b> > .
how can I do it ? I thought of using regex but I don't know how ?