React
HTML
<div id="app">whats your name bbb</div>
<span>whats your name bbb</span>
React
const reactStringReplace = require('react-string-replace')
reactStringReplace('whats your name', 'your', (match, i) => (
<span>{match}</span>
));
<div id="app">whats your name bbb</div>
<span>whats your name bbb</span>
const reactStringReplace = require('react-string-replace')
reactStringReplace('whats your name', 'your', (match, i) => (
<span>{match}</span>
));