Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Irregular
0.6.4
RegEx/HTML/ItemScope.regex.txt
# Matches HTML5 tags with an itemscope
<
(?<Tag>[\w-]*)
(?<Attributes>
[^>]*
\s{0,}
itemscope
(?>
=''
|
=""
)?
\s{0,}
[^>]*
)
>