Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Irregular
0.7.8
RegEx/Console/Hide.regex.txt
# Matches ANSI Hide (aka conceal) Start or End
\e # An Escape
\[ # Followed by a bracket
(?>
(?<HideStart>8m) # 8m starts hide
|
(?<HideEnd>28m) # 28m stops hide
)