notepad++ – Regex: Select all words that doesn not have . (dot) in front of them

I have 5 cases:

I search something in my-life.html" again>

Don't trust mylifehtml" ever>

<!DOCTYPE html>

<!--<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" >

<html lang="en-US" xmlns:og="schema/">

I want to use regex to find all words that doesn not have . (dot) in front of html, that means The Output must be Don't trust mylifehtml" ever>

So, I need to find that words that have html, but doesn’t have .dot before html.

I made a regex, but is not good:

SEARCH: ^.*((?!.).+html">)

Read more here: Source link