Skip to content

Instantly share code, notes, and snippets.

@paveltimofeev
Created January 20, 2016 07:30
Show Gist options
  • Save paveltimofeev/c08efadfac8fdb30d9dc to your computer and use it in GitHub Desktop.
Save paveltimofeev/c08efadfac8fdb30d9dc to your computer and use it in GitHub Desktop.
cls
$text = "Hello <color clr=`"green`">World</color>"
write-host $text
$tag=$false
$text.ToCharArray() | % {
if(!$tag){ $tag = $_ -eq "<" }
if(!$tag)
{
write-host -NoNewline $_
}
else
{
write-host -NoNewline "_"
}
if($tag){ $tag = !($_ -eq ">") }
}
""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment