Rainmeter删除最后一个空格

时间:2017-05-27 19:50:04

标签: regex regex-lookarounds regex-group regex-greedy rainmeter

从示例中,返回处理器的名称,但最后有一个空格,如何让它返回一个没有空格的值?

[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!

Look at the image

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

1 个答案:

答案 0 :(得分:0)

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

Substitute="Name.*#CRLF#":"","#CRLF#":"","\s+$":""