You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Vre1/Check whether a given value...

19 lines
424 B
JavaScript

function is_html(str)
{
regexp = /<([a-z]+) *[^/]*?>/;
if (regexp.test(str))
{
return true;
}
else
{
return false;
}
}
console.log(is_html(''));
console.log(is_html(''));
console.log(is_html('.selector'));