<?xml version="1.0" encoding="UTF-8" ?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>ntb-scripts at Yahoo! Groups</title>
    <link>http://groups.yahoo.com/group/ntb-scripts/</link>
    <description>The NoteTab Scripts Group</description>

    <item>
      <title>Re: How to search a QUESTION MARK in a regular expression</title>
      <pubDate>Wed, 10 Oct 2012 16:35:02 GMT</pubDate>
      <dc:creator>EB</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/591</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/591</guid>
      <description>As is so often the case, I overlooked the obvious.  I thought I had tried pretty much everything - but apparently not. The &#92; seems to work.  THANK YOU!</description>
    </item>
    <item>
      <title>Re: How to search a QUESTION MARK in a regular expression</title>
      <pubDate>Wed, 10 Oct 2012 15:40:27 GMT</pubDate>
      <dc:creator>flo.gehrke</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/590</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/590</guid>
      <description>... An alternative is to search the &#39;?&#39; in hex &#39;&#92;x3F&#39; or octal &#39;&#92;077&#39;. Regards, Flo</description>
    </item>
    <item>
      <title>Re: How to search a QUESTION MARK in a regular expression</title>
      <pubDate>Wed, 10 Oct 2012 14:14:09 GMT</pubDate>
      <dc:creator>John Shotsky</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/589</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/589</guid>
      <description>I use this all the time to find ends of sentences: (&#92;.|&#92;?|!)(&#92;R|&#92;x20|&#92;)|&#92;&quot;) It could also be done using classes (which don&#39;t need escapes except for a few</description>
    </item>
    <item>
      <title>Re: How to search a QUESTION MARK in a regular expression</title>
      <pubDate>Wed, 10 Oct 2012 14:02:19 GMT</pubDate>
      <dc:creator>Robert Bull</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/588</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/588</guid>
      <description>Wednesday, October 10, 2012, 2:00:55 AM, EB wrote: E&gt;    / ?fred(.*)p=31   did not work as a search string in FIND. I think John&#39;s right to suggest trying</description>
    </item>
    <item>
      <title>Re: How to search a QUESTION MARK in a regular expression</title>
      <pubDate>Wed, 10 Oct 2012 01:11:37 GMT</pubDate>
      <dc:creator>John Shotsky</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/587</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/587</guid>
      <description>&#92;? Regards, John RecipeTools Web Site:  &lt;http://recipetools.gotdns.com/&gt; http://recipetools.gotdns.com/ From: ntb-scripts@yahoogroups.com</description>
    </item>
    <item>
      <title>How to search a QUESTION MARK in a regular expression</title>
      <pubDate>Wed, 10 Oct 2012 01:04:54 GMT</pubDate>
      <dc:creator>EB</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/586</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/586</guid>
      <description>I have a bunch of lines in a file that look something like this: Ga53t76lah/Z3vdeg14/V0c2/?freds=OTvvA4OfhbfjI6MQ,0,0,0,&p=31 I want to strip everything to the</description>
    </item>
    <item>
      <title>Re: Finding Pairwise Matches</title>
      <pubDate>Sun, 30 Sep 2012 15:31:57 GMT</pubDate>
      <dc:creator>flo.gehrke</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/585</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/585</guid>
      <description>... A single &#39;«[^&#92;,]*?»&#39; or even &#39;«[^,]+»&#39; (no need to escape comma in character class) would match that &#39;«yyyy»&#39; section but your RegEx is demanding</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Sun, 30 Sep 2012 13:11:44 GMT</pubDate>
      <dc:creator>John Shotsky</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/584</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/584</guid>
      <description>I agree, and use the star heavily in my clip libraries. Regards, John RecipeTools Web Site:  &lt;http://recipetools.gotdns.com/&gt; http://recipetools.gotdns.com/ </description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Sun, 30 Sep 2012 12:39:10 GMT</pubDate>
      <dc:creator>flo.gehrke</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/583</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/583</guid>
      <description>... In this context, I understood that &#39;a&#39; is just an element that, &quot;in practice&quot;, would primarily represent an element in a more complex pattern. In this</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Sat, 29 Sep 2012 14:07:50 GMT</pubDate>
      <dc:creator>Axel Berger</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/582</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/582</guid>
      <description>... I think in practice a star quantifier on its own is meaningless, there must be at least one other thing in the pattern. If you&#39;re interested in one</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Sat, 29 Sep 2012 13:51:59 GMT</pubDate>
      <dc:creator>flo.gehrke</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/581</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/581</guid>
      <description>I understand that you are testing a subject string like... However ... aaa ... starting from the beginning of the line. So &#39;aaa&#39; is not at the start of line</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Sat, 29 Sep 2012 00:10:02 GMT</pubDate>
      <dc:creator>Art Kocsis</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/580</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/580</guid>
      <description>Yes, a zero length match satisfies a{0,}. So does all of other the remaining partial matches. But the  whole point is that a* is supposed to be greedy. Look at</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Fri, 28 Sep 2012 14:56:51 GMT</pubDate>
      <dc:creator>flo.gehrke</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/579</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/579</guid>
      <description>... No bug -- neither in PCRE nor in NTb. &#39;a*&#39; is equivalent to a{0,}. So, at the beginning of the subject string, the engine achieves a match of zero length</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Fri, 28 Sep 2012 14:43:43 GMT</pubDate>
      <dc:creator>John Shotsky</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/578</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/578</guid>
      <description>It may be a matter of opinion, but when a * is used, it will first evaluate the very next character following the cursor or the point in the line that is being</description>
    </item>
    <item>
      <title>Re: NTB or RegEx Bug</title>
      <pubDate>Fri, 28 Sep 2012 14:33:32 GMT</pubDate>
      <dc:creator>Eric Fookes</dc:creator>
      <link>http://groups.yahoo.com/group/ntb-scripts/message/577</link>
      <guid isPermaLink="true">http://groups.yahoo.com/group/ntb-scripts/message/577</guid>
      <description>Hi Art, ... Indeed, it looks like a bug in the regex engine of those NoteTab versions. I just tested NoteTab 7 and it worked correctly. So it seems the updated</description>
    </item>

  </channel>
</rss>
<!-- rss1.grp.bf1.yahoo.com uncompressed Wed May 22 14:23:45 PDT 2013 -->
