我正在尝试只对整个行涂上“ None Provided”字符串。
到目前为止,我有:
$owned | % {write-host "Managing Group: " + ("None Found" -foreground red) "Group Description: None Provided"}
Run Code Online (Sandbox Code Playgroud)
问题在于()中的-foreground,“ f”显示为灰色,这会导致错误。它不带()就起作用(通过对整个行着色)。您能帮我给“未找到”上色吗?
通过使用Overflowed的答案,它帮助我解决了这一问题。谢谢!
编辑:
if ($owned -eq $Null){
$owned | % {write-host "Managing Group: " -nonewline}
$owned | % {write-host "None Found " -foreground red -nonewline}
$owned | % {write-host "Group Description: " -nonewline}
$owned | % {write-host "None Provided " -foreground red}
}
elseif ($description -eq $Null){
$owned | % {write-host "Managing Group: "($_.name) "Group Description: " -nonewline}
$owned | % {write-host "None Provided " -foreground red}
}
else {
$owned | % {write-host "Managing Group: "($_.name) "Group Description: " ($_.description -replace "`r`n", " ")}
}
Run Code Online (Sandbox Code Playgroud)
通过-nonewline开关使用多个写主机
write-host "Managing Group: " -nonewline
write-host "None Found" -foreground red -nonewline
write-host "Group Description: None Provided"
Run Code Online (Sandbox Code Playgroud)
用方便的功能补充溢出的有用答案:
下面定义的函数允许您在字符串中嵌入颜色规范,以便对子字符串进行选择性着色;例如:
Write-HostColored "#green#Green foreground.# Default colors. #blue:white#Blue on white."
Run Code Online (Sandbox Code Playgroud)
产量:
有关详细信息,请阅读下面对该功能的评论。
该功能非常感谢地改编自这篇博客文章。
高级功能源码Write-HostColored:
function Write-HostColored() {
<#
.SYNOPSIS
A wrapper around Write-Host that supports selective coloring of
substrings.
.DESCRIPTION
In addition to accepting a default foreground and background color,
you can embed one or more color specifications in the string to write,
using the following syntax:
#<fgcolor>[:<bgcolor>]#<text>#
<fgcolor> and <bgcolor> must be valid [ConsoleColor] values, such as 'green' or 'white' (case does not matter).
Everything following the color specification up to the next '#' or, impliclitly, the end of the string
is written in that color.
Note that nesting of color specifications is not supported.
As a corollary, any token that immediately follows a color specification is treated
as text to write, even if it happens to be a technically valid color spec too.
This allows you to use, e.g., 'The next word is #green#green#.', without fear
of having the second '#green' be interpreted as a color specification as well.
.PARAMETER ForegroundColor
Specifies the default text color for all text portions
for which no embedded foreground color is specified.
.PARAMETER BackgroundColor
Specifies the default background color for all text portions
for which no embedded background color is specified.
.PARAMETER NoNewline
Output the specified string withpout a trailing newline.
.NOTES
While this function is convenient, it will be slow with many embedded colors, because,
behind the scenes, Write-Host must be called for every colored span.
.EXAMPLE
Write-HostColored "#green#Green foreground.# Default colors. #blue:white#Blue on white."
.EXAMPLE
'#black#Black on white (by default).#Blue# Blue on white.' | Write-HostColored -BackgroundColor White
#>
[CmdletBinding(ConfirmImpact='None', SupportsShouldProcess=$false, SupportsTransactions=$false)]
param(
[parameter(Position=0, ValueFromPipeline=$true)]
[string[]] $Text
,
[switch] $NoNewline
,
[ConsoleColor] $BackgroundColor = $host.UI.RawUI.BackgroundColor
,
[ConsoleColor] $ForegroundColor = $host.UI.RawUI.ForegroundColor
)
begin {
# If text was given as an operand, it'll be an array.
# Like Write-Host, we flatten the array into a single string
# using simple string interpolation (which defaults to separating elements with a space,
# which can be changed by setting $OFS).
if ($Text -ne $null) {
$Text = "$Text"
}
}
process {
if ($Text) {
# Start with the foreground and background color specified via
# -ForegroundColor / -BackgroundColor, or the current defaults.
$curFgColor = $ForegroundColor
$curBgColor = $BackgroundColor
# Split message into tokens by '#'.
# A token between to '#' instances is either the name of a color or text to write (in the color set by the previous token).
$tokens = $Text.split("#")
# Iterate over tokens.
$prevWasColorSpec = $false
foreach($token in $tokens) {
if (-not $prevWasColorSpec -and $token -match '^([a-z]+)(:([a-z]+))?$') { # a potential color spec.
# If a token is a color spec, set the color for the next token to write.
# Color spec can be a foreground color only (e.g., 'green'), or a foreground-background color pair (e.g., 'green:white')
try {
$curFgColor = [ConsoleColor] $matches[1]
$prevWasColorSpec = $true
} catch {}
if ($matches[3]) {
try {
$curBgColor = [ConsoleColor] $matches[3]
$prevWasColorSpec = $true
} catch {}
}
if ($prevWasColorSpec) {
continue
}
}
$prevWasColorSpec = $false
if ($token) {
# A text token: write with (with no trailing line break).
# !! In the ISE - as opposed to a regular PowerShell console window,
# !! $host.UI.RawUI.ForegroundColor and $host.UI.RawUI.ForegroundColor inexcplicably
# !! report value -1, which causes an error when passed to Write-Host.
# !! Thus, we only specify the -ForegroundColor and -BackgroundColor parameters
# !! for values other than -1.
$argsHash = @{}
if ([int] $curFgColor -ne -1) { $argsHash += @{ 'ForegroundColor' = $curFgColor } }
if ([int] $curBgColor -ne -1) { $argsHash += @{ 'BackgroundColor' = $curBgColor } }
Write-Host -NoNewline @argsHash $token
}
# Revert to default colors.
$curFgColor = $ForegroundColor
$curBgColor = $BackgroundColor
}
}
# Terminate with a newline, unless suppressed
if (-not $NoNewLine) { write-host }
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5333 次 |
| 最近记录: |