<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title>DisplayFusion RSS: Start of string operator for Window Text in window position profile?</title>
<atom:link href="https://www.displayfusion.com/Discussions/RSS/?TopicID=c07b65cf-480d-4561-905e-c056480ac10f" rel="self" type="application/rss+xml" />
<link>https://www.displayfusion.com/Discussions/RSS/?TopicID=c07b65cf-480d-4561-905e-c056480ac10f</link>
<description>DisplayFusion RSS: Start of string operator for Window Text in window position profile?</description>
<lastBuildDate>Thu, 09 Apr 2026 15:31:24 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.displayfusion.com/Discussions/RSS/?TopicID=c07b65cf-480d-4561-905e-c056480ac10f</generator>
<item>
<title>RE: Start of string operator for Window Text in window position profile?</title>
<link>https://www.displayfusion.com/Discussions/View/start-of-string-operator-for-window-text-in-window-position-profile/?ID=c07b65cf-480d-4561-905e-c056480ac10f#3</link>
<pubDate>Wed, 26 Jan 2022 16:40:04 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/start-of-string-operator-for-window-text-in-window-position-profile/?ID=c07b65cf-480d-4561-905e-c056480ac10f#3</guid>
<category>DisplayFusion</category>
<description><![CDATA[Quote:
Hello,
I've added this to our feature request list. We don't guarantee that feature requests will be implemented, or offer timelines on possible implementation. We'll be sure to let you know if we do add it to our planned features in a future version.
Thanks!
Awesome, thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
<div class="BackGrey"><div class="Text"><div><b>Quote:</b></div>Hello,<br/>
<br/>
I've added this to our feature request list. We don't guarantee that feature requests will be implemented, or offer timelines on possible implementation. We'll be sure to let you know if we do add it to our planned features in a future version.<br/>
<br/>
Thanks!</div></div><br/>
<br/>
Awesome, thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Start of string operator for Window Text in window position profile?</title>
<link>https://www.displayfusion.com/Discussions/View/start-of-string-operator-for-window-text-in-window-position-profile/?ID=c07b65cf-480d-4561-905e-c056480ac10f#2</link>
<pubDate>Wed, 26 Jan 2022 16:37:56 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/start-of-string-operator-for-window-text-in-window-position-profile/?ID=c07b65cf-480d-4561-905e-c056480ac10f#2</guid>
<category>DisplayFusion</category>
<description><![CDATA[Hello,
I've added this to our feature request list. We don't guarantee that feature requests will be implemented, or offer timelines on possible implementation. We'll be sure to let you know if we do add it to our planned features in a future version.
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Hello,<br/>
<br/>
I've added this to our feature request list. We don't guarantee that feature requests will be implemented, or offer timelines on possible implementation. We'll be sure to let you know if we do add it to our planned features in a future version.<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>Start of string operator for Window Text in window position profile?</title>
<link>https://www.displayfusion.com/Discussions/View/start-of-string-operator-for-window-text-in-window-position-profile/?ID=c07b65cf-480d-4561-905e-c056480ac10f</link>
<pubDate>Mon, 24 Jan 2022 11:45:46 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.displayfusion.com/Discussions/View/start-of-string-operator-for-window-text-in-window-position-profile/?ID=c07b65cf-480d-4561-905e-c056480ac10f</guid>
<category>DisplayFusion</category>
<description><![CDATA[I'm trying to make a window position profile that applies to all regular Firefox windows, but does not apply to a Browser Toolbox window. They have the same class (MozillaWindowClass). Obviously I could set the Window Text value to -"Developer Tools — "
and that would at least guarantee that I d...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
I'm trying to make a window position profile that applies to all regular Firefox windows, but does not apply to a Browser Toolbox window. They have the same class (MozillaWindowClass). Obviously I could set the Window Text value to <div class="Inline"><pre>-"Developer Tools — "</pre></div> and that would at least guarantee that I don't resize the devtools. But then I won't be able to resize regular Firefox windows whose titles contain that string.<br/>
<br/>
Which is plausible, because any webpage whose title ends in "Developer Tools" (e.g., articles about the devtools) will have that " — " appended by Firefox. For example, Firefox's built-in <div class="Inline"><pre>about:devtools</pre></div> page's title is "About Developer Tools" so if it's the active tab, the regular Firefox window's title will be <div class="Inline"><pre>About Developer Tools — Firefox</pre></div>. Which will be excluded by the text query above.<br/>
<br/>
In regex we have the operator <div class="Inline"><pre>^</pre></div> which denotes the start of a string. So that would at least narrow it down to only interfering with webpages whose exact title is "Developer Tools" and webpages whose title begins with "Developer Tools — " (since there's no way to distinguish between the hyphen added by Firefox, and hyphens written into the webpage's actual title).<br/>
<br/>
If we had regex, I could make a much narrower rule. For example, a typical browser toolbox title would be <div class="Inline"><pre>Developer Tools — Active tab's title — Firefox Nightly — chrome://browser/content/browser.xhtml</pre></div>. So a viable regex could be <div class="Inline"><pre>/^Developer Tools — .* — Firefox Nightly — [^:]*:[^:]*$/</pre></div><br/>
<br/>
Are there any tricks to achieving something similar? I read the article on text queries but it doesn't seem to have any anchor tokens at all. If that's the case, then can you implement regex matching for text queries?<br/>
Thanks 🙏
</div>
]]></content:encoded>
</item>
</channel>
</rss>