Just wrap your HTML String into a jQuery object, and then you can run your jQuery selectors from there:
var htmlString = "Paragraph Here
";
var elements = $(htmlString);
var p = elements.filter('p').text();
console.log(p);
//=> Paragraph Here
Working demo here.