--- title: Find Characters with Lazy Matching --- # Find Characters with Lazy Matching --- ## Problem Explanation Fix the regex `/<.*>/` to return the HTML tag `

` and not the text `

Winter is coming

`. Remember the wildcard . in a regular expression matches any character. --- ## Solutions
Solution 1 (Click to Show/Hide) ```js let text = "

Winter is coming

"; let myRegex = /

?/; // it's the answer! let result = text.match(myRegex); ```