Something like:
RegExp is AWAYS case-sensitive, unless you tell it otherwise with the i parameter of the (?siU) metacommand. Please use (?siU) on pretty much all RegExp options. It will cause much better behavior.
What (?siU) at the beginning of a regular expression does is:
( start metacommand
? set the following behaviors for the entire expression
s treat spaces tabs and linefeeds as part of the "any character" set, as in (.*)
i ignore case
U be "ungreedy" (get the first instance of a search term, not the last)
) end metacommand
P.S. I have no idea why you are including the phrase "To be able to run the full version" in the RegExp, that doesn't seem to add any value.
Code:
[Rainmeter]Update=1000AccurateText=1DynamicWindowSize=1[Variables]CommonLink=https://www.tone2.com/download.htmlCommonRegEx=(?siU)To be able to run the full versionApp2=Electra[MeasureSite]Measure=WebParserURL=#CommonLink#RegExp=#CommonRegEx#.*#App2#.*#App2#.*<td>(.*)\sStringIndex=1[MeterString]Meter=StringMeasureName=MeasureSiteFontColor=255,255,255,255FontSize=17SolidColor=0,0,0,1AntiAlias=1Text=Version is %1
RegExp is AWAYS case-sensitive, unless you tell it otherwise with the i parameter of the (?siU) metacommand. Please use (?siU) on pretty much all RegExp options. It will cause much better behavior.
What (?siU) at the beginning of a regular expression does is:
( start metacommand
? set the following behaviors for the entire expression
s treat spaces tabs and linefeeds as part of the "any character" set, as in (.*)
i ignore case
U be "ungreedy" (get the first instance of a search term, not the last)
) end metacommand
P.S. I have no idea why you are including the phrase "To be able to run the full version" in the RegExp, that doesn't seem to add any value.
Statistics: Posted by jsmorley — 47 minutes ago