0

从示例中,返回处理器的名称但末尾有空格,我怎样才能让它返回一个最后没有空格的值?

[MeasureRun]
Measure=Plugin
Plugin=RunCommand
Parameter=wmic cpu get Name
OutputType=ANSI
RegExpSubstitute=1
Substitute="Name.*#CRLF#":"","#CRLF#":""
ClipString=1
IfCondition=1
IfTrueAction=[!CommandMeasure MeasureRun "Run"]

[MeterResult]
Meter=String
MeasureName=MeasureRun
FontSize=14
FontColor=255,255,255,255
AntiAlias=1
Text=%1!

看图

我认为这可以通过正则表达式来完成,但我并不擅长。

4

1 回答 1

0

只需在替换列表中添加另一个Substitute"\s+$"即可将字符串(模式)末尾出现的一个或多个空格替换为如下所示的空字符串:

Substitute="Name.*#CRLF#":"","#CRLF#":"","\s+$":""
于 2019-05-26T03:25:04.227 回答