<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>pnotepad.org forums &#187; Tag: find - Recent Posts</title>
		<link>http://pnotepad.org/forums/tags/find</link>
		<description>Programmer&#039;s Notepad Forums</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 06:25:58 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://pnotepad.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://pnotepad.org/forums/rss/tags/find" rel="self" type="application/rss+xml" />

		<item>
                        <title>Replace w/ Regular Expressions: Unexpected Behaviour (Nux)</title>
			<link>http://pnotepad.org/forums/topic/651#post-2377</link>
			<pubDate>Mon, 31 Aug 2009 13:42:12 +0000</pubDate>
			<dc:creator>Nux</dc:creator>
			<guid isPermaLink="false">2377@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;The expression &#34;(return[ \S]+;)(})(?=\S)­­&#34; is not valid - it should be:&#60;br /&#62;
(return[ \S]+;)(\})(?=\S)­­&#60;br /&#62;
Also note that the third parentheses are non-capturing (so you cannot really use \3). In fact whatever is matched with &#34;(?=\S)­­&#34; wouldn't be in the match at all (i.e. for &#34;return blah;}abc&#34; the match would be &#34;return blah;}&#34; - without &#34;a&#34;).&#60;/p&#62;
&#60;p&#62;Nice regular expression reference is here:&#60;br /&#62;
&#60;a href=&#34;https://developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Global_Objects/RegExp&#34; rel=&#34;nofollow&#34;&#62;https://developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Global_Objects/RegExp&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Replace w/ Regular Expressions: Unexpected Behaviour (fedoracore)</title>
			<link>http://pnotepad.org/forums/topic/651#post-2373</link>
			<pubDate>Thu, 27 Aug 2009 23:42:10 +0000</pubDate>
			<dc:creator>fedoracore</dc:creator>
			<guid isPermaLink="false">2373@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;okay. i want to help, so i'll try to open an issue on this soon. coincidentally, i am about to try a regex operation, and i've selected ProsNpad for the job. Perhaps this will lead to something more meaningful in that &#34;issue&#34; entry. otherwise, i'll do my best for creating a proper issue based on what i recall from the previous instance, as stated above.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Replace w/ Regular Expressions: Unexpected Behaviour (simon)</title>
			<link>http://pnotepad.org/forums/topic/651#post-2368</link>
			<pubDate>Tue, 25 Aug 2009 08:39:16 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">2368@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Yes, it looks like there are a couple of bugs with the handling of escaped expressions and grouped expressions with the regular expressions. Could you please open an issue:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://code.google.com/p/pnotepad/issues/entry&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/pnotepad/issues/entry&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Replace w/ Regular Expressions: Unexpected Behaviour (fedoracore)</title>
			<link>http://pnotepad.org/forums/topic/651#post-2360</link>
			<pubDate>Sun, 23 Aug 2009 11:19:04 +0000</pubDate>
			<dc:creator>fedoracore</dc:creator>
			<guid isPermaLink="false">2360@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi. As somewhat a follower of ProsNpad &#38;amp; its RegEx Find and Replace functionality, I noticed in recent changelog reports that the RegEx has been updated. I thought it might be of help to report my experience while using Replace with regular expressions attempting to dissect some of what's going on in the &#60;em&#62;YUI&#60;/em&#62;(1) JavaScript library component, yahoo-dom-event.js&#60;/p&#62;
&#60;p&#62;Most of the time, everything works great (e.g. i often turn to ProsNpad for regular expression operations. for curiosity, i've done some amount of testing for differences between PN, other Scintilla-based editors, .NET-based editors, etc.), and I've been successful with it in some instances where i experienced difficulty with other editors (i.e. it's amazing the variance between different &#34;flavors&#34;, as implemented in editors [to quote the Regex Buddy author's texts])&#60;/p&#62;
&#60;p&#62;One of the several expressions I've used, is shown below-- it's one of a few which caused the unexpected result:&#60;br /&#62;
Match Expression:&#60;br /&#62;
&#60;code&#62;(return[ \S]+;)(})(?=\S)­­&#60;/code&#62;&#60;br /&#62;
Replace Expression:&#60;br /&#62;
&#60;code&#62;\n\1\n\2\n\3&#60;/code&#62;&#60;br /&#62;
The unexpected result follows:&#60;br /&#62;
&#60;strong&#62;&#60;em&#62;Before&#60;/em&#62;:&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(this.__yui_events){
    if(this.__yui_events[A]){
    return true;}}
    return false;}};(function(){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;&#60;em&#62;After&#60;/em&#62;:&#60;/strong&#62;&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(this.__yui_events){
    if(this.__yui_events[A]){

return true;
}
\\}
    return false;}};(function(){&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Programmer's Notepad had previously executed a Replacement Expression successfully on 650+ items in that same file, just as i wanted without error. However, when I first opened the file, i &#60;em&#62;was&#60;/em&#62; seeing this error. I enabled (tested), then disabled the &#34;Allow Backslash Expression&#34; option at that time, which seemed to &#34;fix&#34; the error, but that old-trick didn't work this time. ;-) &#60;/p&#62;
&#60;p&#62;Looking through the code, it must have &#34;went away&#34; for the bulk of my work, i think until trying this particular expression which, btw-- i realized, even if successful, wasn't &#60;em&#62;quite&#60;/em&#62; what i was going for-- but, you know-- win some lose some, eh?  (a lot of fooling around w/ regex, really-- guess i enjoy wasting time... i dunno) heheh... anyway-- &#60;/p&#62;
&#60;p&#62;I suspect, if i exit the app, and restart it-- i'll probably have more success-- so, this isn't a complaint, but just an FYI.&#60;/p&#62;
&#60;p&#62;best regards!&#60;br /&#62;
-js&#60;/p&#62;
&#60;p&#62;EDIT: geez... i hope i edited that code correctly, to reflect what's going on. note the double-reverse-solidus character which appeared (the unexpected result) in the &#34;After&#34; shot. &#60;em&#62;NOTE:&#60;/em&#62; -- here, it doesn't appear as PNpad has removed any chars, which was the plan, however-- as i mentioned, when i first started, and i saw these reverse-solidus chars, it was removing, for example, instead of returning \1, it removed it, and went on w/ the rest of the expression. damn-- too bad it's so difficult to try to explain in a few short sentences, and many long sentences doesn't help much, i guess. oh well! 'least i've tried, eh? :-)&#60;br /&#62;
(1)&#60;br /&#62;
sourceforge . net / projects / yui /
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature request: Text search in output window (simon)</title>
			<link>http://pnotepad.org/forums/topic/621#post-2244</link>
			<pubDate>Thu, 16 Jul 2009 11:25:33 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">2244@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Thanks, please file a request here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://code.google.com/p/pnotepad/issues/entry&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/pnotepad/issues/entry&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature request: Text search in output window (Platon)</title>
			<link>http://pnotepad.org/forums/topic/621#post-2227</link>
			<pubDate>Tue, 14 Jul 2009 11:26:44 +0000</pubDate>
			<dc:creator>Platon</dc:creator>
			<guid isPermaLink="false">2227@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'm using some tools that produce thounds of lines of output. It would be convenient to be able to run a text search in the output windows too like searching document windows.&#60;br /&#62;
TextPad nicely supports this feature.&#60;/p&#62;
&#60;p&#62;Aron
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Clear previous searches (simon)</title>
			<link>http://pnotepad.org/forums/topic/551#post-1920</link>
			<pubDate>Thu, 19 Mar 2009 09:15:16 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1920@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;In current 2.0.9 versions you need to go to your user settings directory and delete the .acd files:&#60;/p&#62;
&#60;p&#62;Vista: c:\users\[youruser]\appdata\roaming\echo software\pn2&#60;br /&#62;
or&#60;br /&#62;
XP: c:\documents and settings\[youruser]\application data\echo software\pn2&#60;br /&#62;
or&#60;br /&#62;
Portable: [pn]\settings
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Clear previous searches (Chico3001)</title>
			<link>http://pnotepad.org/forums/topic/551#post-1915</link>
			<pubDate>Sun, 15 Mar 2009 00:56:43 +0000</pubDate>
			<dc:creator>Chico3001</dc:creator>
			<guid isPermaLink="false">1915@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi, firs of all, let me congratulate you for your excelent program, it is the best programmers editor i have seen, I use it to program in many languages from assembler to PHP and HTML&#60;/p&#62;
&#60;p&#62;And just one small question, is there a way to complete clear the previous searches from the search window?&#60;/p&#62;
&#60;p&#62;Thanks for your help..
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find Results window (alex_stefan54)</title>
			<link>http://pnotepad.org/forums/topic/508#post-1775</link>
			<pubDate>Wed, 14 Jan 2009 20:37:13 +0000</pubDate>
			<dc:creator>alex_stefan54</dc:creator>
			<guid isPermaLink="false">1775@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I cannot see Find Results window anymore, although it used to work. &#34;View&#34;-&#38;gt; &#34;Window&#34;-&#38;gt; &#34;Find Results&#34; check doesn't help. The bottom text bar gives a summary of the search but I need a window with details. Any suggestion? Thanks
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Java Extension (simon)</title>
			<link>http://pnotepad.org/forums/topic/487#post-1719</link>
			<pubDate>Tue, 18 Nov 2008 10:37:32 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1719@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'm not personally planning on making a Java extension, but there is no reason why someone else can't - that's why all the extensions interfaces are public and documented. You might look at using SWIG to generate Java interfaces:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.swig.org/Doc1.3/Java.html&#34; rel=&#34;nofollow&#34;&#62;http://www.swig.org/Doc1.3/Java.html&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Java Extension (oh)</title>
			<link>http://pnotepad.org/forums/topic/487#post-1716</link>
			<pubDate>Tue, 18 Nov 2008 10:33:41 +0000</pubDate>
			<dc:creator>oh</dc:creator>
			<guid isPermaLink="false">1716@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Dear PN Team -&#60;/p&#62;
&#60;p&#62;Thank you for a wonderful tool.&#60;/p&#62;
&#60;p&#62;Are there any plans for a Java extension to Programmers Notepad, like PyPN?&#60;/p&#62;
&#60;p&#62;For the moment I use Project Tools and Global Tools to integrate my Java programs into Programmers Notepad (I send the selected text to Java using Standard Input, and I capture the output, replacing the original selection).&#60;/p&#62;
&#60;p&#62;But this method results in frequent crashes of PN.&#60;/p&#62;
&#60;p&#62;I am not very good with Python, and know nothing about C (or what language PN is programmed in). A java extension would mean a way for me to contribute useful scripts (spell checking, regex search &#38;#38; replace in folders, replacement expressions etc.). &#60;/p&#62;
&#60;p&#62;Thanks again for the tool.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find dialog &#38; Tabbing in general (macdonag)</title>
			<link>http://pnotepad.org/forums/topic/269#post-961</link>
			<pubDate>Wed, 08 Aug 2007 09:33:42 +0000</pubDate>
			<dc:creator>macdonag</dc:creator>
			<guid isPermaLink="false">961@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;2 things:&#60;/p&#62;
&#60;p&#62;It would be nice if you could change tabs in the find dialog as you would with the editor - e.g., ctrl-tab &#38;#38; ctrl-shift-tab to flip between find, replace, find in files.&#60;/p&#62;
&#60;p&#62;Also, it seems if I switch editor tabs using ctrl-tab, my entire screen seems to do a refresh.  If I change tabs by clicking on the tab with my mouse, the full screen refresh doesn't occur.  The switch is much smoother.  Odd!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

