JSFiddle - React, Tailwind, and code Playground
HTML
<div class="whatever">
world wide web
</div>
CSS
span {
color: red;
}
JavaScript
var mystring = "world wide web";
mystring = $('.whatever').replace(/w/g, "<span>w</span>");
alert(mystring);