^start of string
\/the literal / (4710 / 578 / 2F16)
Group 1(computers|notebook|apple) computersthe literal text computers (case sensitive) notebookthe literal text notebook (case sensitive) applethe literal text apple (case sensitive) \/the literal / (4710 / 578 / 2F16)
?repeats the group contents below at most once:
.*?any Unicode character (except for line terminators), repeated any number of times
\/the literal / (4710 / 578 / 2F16)
.*?any Unicode character (except for line terminators), repeated any number of times
.any Unicode character (except for line terminators)
htmlthe literal text html (case sensitive) $end of string, or before its final line terminator
g modifier: global. Finds all matches instead of stopping after the first
u modifier: unicode. Treats the pattern and subject as UTF-16