<?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>FileSeek RSS: Regular Expression search time</title>
<atom:link href="https://www.fileseek.ca/Discussions/RSS/?TopicID=bf61dcd7-bafc-49b8-b98e-ed60adc26207" rel="self" type="application/rss+xml" />
<link>https://www.fileseek.ca/Discussions/RSS/?TopicID=bf61dcd7-bafc-49b8-b98e-ed60adc26207</link>
<description>FileSeek RSS: Regular Expression search time</description>
<lastBuildDate>Thu, 07 May 2026 12:07:25 GMT</lastBuildDate>
<language>en</language>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<generator>https://www.fileseek.ca/Discussions/RSS/?TopicID=bf61dcd7-bafc-49b8-b98e-ed60adc26207</generator>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#9</link>
<pubDate>Thu, 14 Jan 2016 20:56:32 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#9</guid>
<category>FileSeek</category>
<description><![CDATA[Awesome, glad to hear it!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Awesome, glad to hear it!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#8</link>
<pubDate>Thu, 14 Jan 2016 20:49:34 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#8</guid>
<category>FileSeek</category>
<description><![CDATA[Doing the Regex the way you suggested works fine.  It goes through all of the files quickly which is the goal.
Thanks,
Paul]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Doing the Regex the way you suggested works fine.  It goes through all of the files quickly which is the goal.<br/>
<br/>
Thanks,<br/>
Paul
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#7</link>
<pubDate>Thu, 14 Jan 2016 19:49:35 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#7</guid>
<category>FileSeek</category>
<description><![CDATA[Close, you need to quote the whole query and then escape the quotes inside, like this:
Code
Copy
Select All
-q "\"cmd://Main/%1\" \"cmd://Form/%1\" \"cmd://View/%1\"" -o c:\xxx\yyy\zzz\Lookup,csv -start
Alternatively, I talked to one of our devs, and he recommended a RegEx statement that sho...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Close, you need to quote the whole query and then escape the quotes inside, like this:<br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019e0255e85174e5a555637a9192ef5c" class="ClipboardCopyControl"><img src="https://www.fileseek.ca/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e0255e85174e5a555637a9192ef5cJs'); return false;"><img src="https://www.fileseek.ca/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019e0255e85174e5a555637a9192ef5cJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">-q "\"cmd://Main/%1\" \"cmd://Form/%1\" \"cmd://View/%1\"" -o c:\xxx\yyy\zzz\Lookup,csv -start</pre><textarea id="code019e0255e85174e5a555637a9192ef5c" name="code019e0255e85174e5a555637a9192ef5c" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Alternatively, I talked to one of our devs, and he recommended a RegEx statement that should work a lot faster than the one you were using. You would run it like this:<br/>
<br/>
<div class="col-md-12 BoxWrap"><div class="Box table-responsive"><a name="code" style="width:0; height:0;"></a><h2 class="TableTitle" style="border:0"><div class="TableTitleText">Code</div><div class="TitleButtons"><div class="TableTitleButton"><a href="#" onclick="return false;" data-clipboard-target="#code019e0255e85a768db98b2f45d060c13d" class="ClipboardCopyControl"><img src="https://www.fileseek.ca/MediaCommon/SVGs/FontAwesome/clone.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Copy</span></a></div><div class="TableTitleButton"><a href="#" onclick="bfs.util.codeEditorSelectAll('code019e0255e85a768db98b2f45d060c13dJs'); return false;"><img src="https://www.fileseek.ca/MediaCommon/SVGs/FontAwesome/square-check.blue.svg" style="box-sizing:border-box;position:relative;overflow:hidden;width:auto;max-width:16px;height:16px;" /><span class="Text">Select All</span></a></div></div></h2><div class="TableTitleContent table-responsive"><div class="AceEditorWrapper" style="border-top:solid 1px var(--color-default-border);padding:0"><pre id="code019e0255e85a768db98b2f45d060c13dJs" contenteditable="true" spellcheck="true" class="skiptranslate" style="width:100%; min-height:75px;">-r "cmd:.*?OpenDialog"  -o c:\xxx\yyy\zzz\Lookup,csv -start</pre><textarea id="code019e0255e85a768db98b2f45d060c13d" name="code019e0255e85a768db98b2f45d060c13d" style="position:absolute; top:0; left:-999999px; width:1px; height:1px;"></textarea></div>
</div></div></div><br/>
<br/>
Hope that helps!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#6</link>
<pubDate>Wed, 13 Jan 2016 21:02:56 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#6</guid>
<category>FileSeek</category>
<description><![CDATA[How would I do that if I was using a command line version?  Here is the snippet of the batch file I use.  The compare string is passed into the batch file as a parameter:
-q "cmd: + %1" -o c:\xxx\yyy\zzz\Lookup,csv -start
Are you saying that this would work:
-q "cmd://Main/%1" "cmd://Form/%1" ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
How would I do that if I was using a command line version?  Here is the snippet of the batch file I use.  The compare string is passed into the batch file as a parameter:<br/>
<br/>
   -q "cmd: + %1" -o c:\xxx\yyy\zzz\Lookup,csv -start<br/>
<br/>
Are you saying that this would work:<br/>
<br/>
-q "cmd://Main/%1" "cmd://Form/%1" "cmd://View/%1"  -o c:\xxx\yyy\zzz\Lookup,csv -start<br/>
<br/>
Thanks,<br/>
Paul
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#5</link>
<pubDate>Wed, 13 Jan 2016 20:57:17 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#5</guid>
<category>FileSeek</category>
<description><![CDATA[There sure is a way to do an OR! Just separate each search term by a space, like so:
"cmd://Main/OpenDialog" "cmd://Form/OpenDialog" "cmd://View/OpenDialog"
We'll check into that RegEx query too, to see if there's anything we can do to improve the speed.
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
There sure is a way to do an OR! Just separate each search term by a space, like so:<br/>
<br/>
"cmd://Main/OpenDialog" "cmd://Form/OpenDialog" "cmd://View/OpenDialog"<br/>
<br/>
We'll check into that RegEx query too, to see if there's anything we can do to improve the speed.<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#4</link>
<pubDate>Wed, 13 Jan 2016 20:51:59 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#4</guid>
<category>FileSeek</category>
<description><![CDATA[As a follow-up to this, assuming that the Regex search cannot be sped up, is there a way to perform an "OR" type of query?  If I could do that, then I could provide the possible things that could be between the "cmd:" and the "text", like:
"cmd://Main/OpenDialog"  or  "cmd://Form/OpenDialog" or ...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
As a follow-up to this, assuming that the Regex search cannot be sped up, is there a way to perform an "OR" type of query?  If I could do that, then I could provide the possible things that could be between the "cmd:" and the "text", like: <br/>
"cmd://Main/OpenDialog"  or  "cmd://Form/OpenDialog" or "cmd://View/OpenDialog"<br/>
<br/>
Thanks,<br/>
Paul
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#3</link>
<pubDate>Wed, 13 Jan 2016 20:45:39 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#3</guid>
<category>FileSeek</category>
<description><![CDATA[If I perform this query, ".*cmd:.*text"    it takes forever to do the file search.  By forever, I mean nothing changes on the screen.
Conversely, doing a standard query of: "cmd: + text" goes very fast, but the end results some times isn't what I want because "cmd:" might appear on one line of t...]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
If I perform this query, ".*cmd:.*text"    it takes forever to do the file search.  By forever, I mean nothing changes on the screen.  <br/>
<br/>
Conversely, doing a standard query of: "cmd: + text" goes very fast, but the end results some times isn't what I want because "cmd:" might appear on one line of the file and "text" appears on another line.  I want to know when both pieces of text appear on the same line with the "cmd:" occurring first.  The Regex expression would produce those results, but it takes way too long to process.<br/>
<br/>
Paul
</div>
]]></content:encoded>
</item>
<item>
<title>RE: Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#2</link>
<pubDate>Wed, 13 Jan 2016 20:16:57 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207#2</guid>
<category>FileSeek</category>
<description><![CDATA[Would you be able to share the RegEx expression that you're using for the search? I'd like to test it out here to see if we can reproduce the same results.
Thanks!]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Would you be able to share the RegEx expression that you're using for the search? I'd like to test it out here to see if we can reproduce the same results.<br/>
<br/>
Thanks!
</div>
]]></content:encoded>
</item>
<item>
<title>Regular Expression search time</title>
<link>https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207</link>
<pubDate>Tue, 12 Jan 2016 15:07:58 GMT</pubDate>
<dc:creator>Binary Fortress Software</dc:creator>
<guid isPermaLink="false">https://www.fileseek.ca/Discussions/View/regular-expression-search-time/?ID=bf61dcd7-bafc-49b8-b98e-ed60adc26207</guid>
<category>FileSeek</category>
<description><![CDATA[Does anyone know how to speed up the regular expression  search?  If I do a simple text search irt is very fast.  But as soon as I do a regular expression search it slows to a totally unacceptable level for what I'm trying to do.
Thanks in advance,
Paul]]></description>
<content:encoded><![CDATA[<div class="CTDiscussions">
Does anyone know how to speed up the regular expression  search?  If I do a simple text search irt is very fast.  But as soon as I do a regular expression search it slows to a totally unacceptable level for what I'm trying to do.<br/>
<br/>
Thanks in advance,<br/>
Paul
</div>
]]></content:encoded>
</item>
</channel>
</rss>