i have this html string
<span style="font-size:25px;border-radius: 10px;">John Doe</span>
from a response. I tried this code to get the John Doe only
const testt = String(response.body)
const match = testt.match(/^<span style="font-size:25px;border-radius: 10px;">(.*)<\/span>$/);
console.log('match', match[1]);
i recieve null
in my logs.