<?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: regex - Recent Topics</title>
		<link>http://pnotepad.org/forums/tags/regex</link>
		<description>Programmer&#039;s Notepad Forums</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 11:48:54 +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/regex/topics" rel="self" type="application/rss+xml" />

		<item>
                        <title>RegEx in PN  - Example (NickDMax)</title>
			<link>http://pnotepad.org/forums/topic/7416#post-10559</link>
			<pubDate>Wed, 11 Jan 2012 02:51:44 +0000</pubDate>
			<dc:creator>NickDMax</dc:creator>
			<guid isPermaLink="false">10559@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;So I was thinking about this &#60;a href=&#34;http://untidy.net/blog/2011/05/18/regular-expressions-and-scripts-worked-example/&#34;&#62;RegEx/Script example from the Untidy blog&#60;/a&#62; and I thought: &#34;Can that be one in 1 RegEx?&#34;&#60;/p&#62;
&#60;p&#62;The answer is of course: Yes - but would you really want to.&#60;/p&#62;
&#60;p&#62;Search: ^(?:(?!LogStep).*(?:\r\n)+)&#124;(?:LogStep\(\s*&#34;([^&#34;]+)&#34;\s*\).*(\r\n)(\r\n)*)&#60;br /&#62;
Replace: \1\2&#60;/p&#62;
&#60;p&#62;hit &#38;lt;Replace All&#38;gt;&#60;/p&#62;
&#60;p&#62;This is a pretty complex RegEx so lets break it up. The overall structure is A&#124;B&#60;/p&#62;
&#60;p&#62;A: RegEx to match the rest of a line NOT BEGINNING with &#34;LogStep&#34;&#60;br /&#62;
B: RegEx to match the rest of a line that DOES begin with &#34;LogStep&#34; - capture the text (and a CRLF new line)&#60;/p&#62;
&#60;p&#62;The whole thing is wrapped in a the expression: ^(?:A&#124;B)&#60;/p&#62;
&#60;p&#62;where ^ asserts the beginning of a line, and (?: ) is a non-capture group - that is it treated as a group but not captured into \1 or \2 etc. - this outer non-capture group creates separation. Without it our expression would need to be: ^A&#124;^B&#60;/p&#62;
&#60;p&#62;Since the expression A contains no capture groups BUT the overall expression DOES contain capture 2 capture groups \1 and \2 will be empty when expression A matches. When B matches \1 is the text inside of the quotation marks, and \2 is a crlf (\r\n) pair.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>RegEx Questions (NickDMax)</title>
			<link>http://pnotepad.org/forums/topic/702#post-2540</link>
			<pubDate>Fri, 30 Oct 2009 17:13:32 +0000</pubDate>
			<dc:creator>NickDMax</dc:creator>
			<guid isPermaLink="false">2540@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I was trying to update some of the wiki on Regular Expressions and found some oddities -- Though first a question:&#60;/p&#62;
&#60;p&#62;#1. What is the base for PN's Find/Replace RegEx? Boost::XPressive? Boost::Regex?&#60;/p&#62;
&#60;p&#62;Now The RegEx seems to support Look ahead/behind well enough:&#60;br /&#62;
'(.*)(?=ton)' -- seems to work.&#60;br /&#62;
'(?&#38;lt;=Apple)(.*)' -- seems to work.&#60;/p&#62;
&#60;p&#62;but the (?!...) and (?&#38;lt;!...) non-capture groups really seem to be buggy. They Work in some situations but seem to fall apart when combined with greedy quantifiers. &#60;/p&#62;
&#60;p&#62;'(?&#38;lt;!H)(.*)' will still match 'Hello' and&#60;br /&#62;
'(?&#38;lt;!H)([elo]*)' does not seem to match anything. (For example Bello Xello  etc).&#60;/p&#62;
&#60;p&#62;'(.)(?!e)' works fine&#60;br /&#62;
'(.*)(?!e)' Matches every line... (sort of makes sense since this regex matches to end of line charaters...but even things like '(.*)(?!e$)' fail.&#60;/p&#62;
&#60;p&#62;So I am looking for information on the RegEx library used so that I can get a feel for what should be updated in the Wiki.
&#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>Search and Replace questions (ToddFiske)</title>
			<link>http://pnotepad.org/forums/topic/544#post-1880</link>
			<pubDate>Fri, 27 Feb 2009 17:03:32 +0000</pubDate>
			<dc:creator>ToddFiske</dc:creator>
			<guid isPermaLink="false">1880@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I was using search and replace with regular expressions on some code yesterday and came up with some questions.&#60;/p&#62;
&#60;p&#62;1. The Mark All button highlights all occurrences of the search term to be hightlighted, but this highlighting is barely visible on a dark background theme. Is there a way to change the highlighting color?&#60;/p&#62;
&#60;p&#62;2. Is there a way to unmark all marked items? (As a workaround, I can search for and mark a different sequence.)&#60;/p&#62;
&#60;p&#62;3. When replacing all, is there a way to make it stop at the end of the document, not continue from the top?&#60;/p&#62;
&#60;p&#62;Then I have a feature request related to this:&#60;/p&#62;
&#60;p&#62;If one just did a Replace, I would like F3 to repeat the replace, instead of just repeating the find. Or have a command and keypress that repeats the replace operation. For example, in the Borland Delphi 7 IDE one can start a replace operation and replace one or more occurrences, then close the dialog, move the cursor around, type, etc, then press Ctrl+L to do another replace operation without going back to the dialog. If the last thing was a find operation, then Ctrl+L repeats that instead.&#60;/p&#62;
&#60;p&#62;I will also try to add this request in Google Code.
&#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>Cannot run installer - not administrator (aland)</title>
			<link>http://pnotepad.org/forums/topic/480#post-1695</link>
			<pubDate>Wed, 05 Nov 2008 15:27:00 +0000</pubDate>
			<dc:creator>aland</dc:creator>
			<guid isPermaLink="false">1695@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I already have pn v2.0.6.1 installed on my machine, but since installing it my account has had administrator rights removed (what a pain!). I'd like to upgrade to latest version, but if I run just the installer I get the message &#34;You must be logged in as an administrator when installing this program&#34;.&#60;br /&#62;
Is there a way that I can upgrade to the latest version without the installer?&#60;br /&#62;
The main reason I want to upgrade is because, with this version it doesn't seem possible to use the 'lazy' modifier for regex. eg -&#60;br /&#62;
&#60;code&#62;&#38;lt;.+?&#38;gt;&#60;/code&#62;&#60;br /&#62;
to match HTML/XML tags. I just get 'The specified text cannot be found'.&#60;/p&#62;
&#60;p&#62;Thanks in advance, it's a great program!
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>How do I use the new regex? (2.0.9) (jumpfroggy)</title>
			<link>http://pnotepad.org/forums/topic/439#post-1544</link>
			<pubDate>Tue, 15 Jul 2008 21:22:49 +0000</pubDate>
			<dc:creator>jumpfroggy</dc:creator>
			<guid isPermaLink="false">1544@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I just installed 2.0.9.806, and tried to search for &#60;code&#62;\(.+\)&#60;/code&#62;, which in the old PN would search for an entire line.  Now &#60;code&#62;\(&#60;/code&#62; searches for a parenthesis instead of grouping the match.&#60;/p&#62;
&#60;p&#62;However, when I change it to &#60;code&#62;(.+)&#60;/code&#62; it highlights from the cursor to the end of the file, and then the second search highlights the entire file.  Same thing happens with &#60;code&#62;^.+$&#60;/code&#62;.  Maybe the problem is with the multi-line flag not being set for the regex?&#60;/p&#62;
&#60;p&#62;Is there any documentation for the regex used in PN?  I'd be glad to help make the wiki page, if the wiki would let me into my account (see my other thread).  Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>help on regular expressions (webmailusr-msn)</title>
			<link>http://pnotepad.org/forums/topic/431#post-1520</link>
			<pubDate>Fri, 04 Jul 2008 01:41:12 +0000</pubDate>
			<dc:creator>webmailusr-msn</dc:creator>
			<guid isPermaLink="false">1520@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi:&#60;br /&#62;
I need to customize some regex for output capture, I'd like to ask your help:&#60;/p&#62;
&#60;p&#62;PHP:&#60;br /&#62;
Parse error: syntax error, unexpected T_STRING in Test.php on line 11&#60;br /&#62;
(No idea)&#60;/p&#62;
&#60;p&#62;GCC:&#60;br /&#62;
Test.cpp:21: syntax error before `(' token&#60;br /&#62;
%f:%l:(%c:)?.* works for that but not when column is included:&#60;br /&#62;
Test.cpp:7:17: Mat.h: No such file or directory
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>How to replace delete whole line containing specific characters? (horus)</title>
			<link>http://pnotepad.org/forums/topic/403#post-1414</link>
			<pubDate>Thu, 29 May 2008 19:56:53 +0000</pubDate>
			<dc:creator>horus</dc:creator>
			<guid isPermaLink="false">1414@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Suppose I want to delete all those whole lines containing the characters &#34;abc&#34;.  By whole line, I mean even the newline character.&#60;/p&#62;
&#60;p&#62;If I use the regex ^.*abc.*$ and replace it with nothing, empty lines will be left.  But I don't even want empty lines.  What should I do?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find/Replace and Regular / Allow backslash expressions (Nux)</title>
			<link>http://pnotepad.org/forums/topic/419#post-1471</link>
			<pubDate>Tue, 10 Jun 2008 10:18:09 +0000</pubDate>
			<dc:creator>Nux</dc:creator>
			<guid isPermaLink="false">1471@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi.&#60;/p&#62;
&#60;p&#62;In Find/Replace window there are two options - Regular expressions and Allow backslash expressions but it seems to me that when I tick &#34;Regular expressions&#34; the &#34;Allow backslash expressions&#34; doesn't change anything. &#34;Match whole word&#34; and &#34;Match case&#34; also doesn't seem to work with RegExp.&#60;/p&#62;
&#60;p&#62;So this seems to be a bug or maybe the options should be organized differently e.g.:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
* Simple search expressions&#60;br /&#62;
  [] Match case&#60;br /&#62;
  [] Match whole word&#60;br /&#62;
  [] Allow backslash expressions&#60;br /&#62;
* Regular expressions&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;BTW I've entered a wish for Find/Replace about PCRE parentheses matching (tagged expressions):&#60;br /&#62;
&#60;a href=&#34;http://code.google.com/p/pnotepad/issues/detail?id=87&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/pnotepad/issues/detail?id=87&#60;/a&#62;&#60;br /&#62;
That would be an option in Regexp:&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
* Simple search expressions&#60;br /&#62;
  [] Match case&#60;br /&#62;
  [] Match whole word&#60;br /&#62;
  [] Allow backslash expressions&#60;br /&#62;
* Regular expressions&#60;br /&#62;
  [] PCRE tagged expressions&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Having said all that I believe at least &#34;Match case&#34; should also be available for RegExp.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>regex: is there support for {number} queries? (jumpfroggy)</title>
			<link>http://pnotepad.org/forums/topic/320#post-1151</link>
			<pubDate>Wed, 16 Jan 2008 20:38:56 +0000</pubDate>
			<dc:creator>jumpfroggy</dc:creator>
			<guid isPermaLink="false">1151@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'm trying to do a search for this:&#60;br /&#62;
a{2}&#60;br /&#62;
In most regex's, that should find any two occurrences of the character &#34;a&#34;.  It doesn't seem to work in PN.&#60;/p&#62;
&#60;p&#62;Is there support for curly braces in Regular Expressions in PN?  Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Regular expression and Backslash expressions should be mutually exclusive (jumpfroggy)</title>
			<link>http://pnotepad.org/forums/topic/319#post-1150</link>
			<pubDate>Wed, 16 Jan 2008 20:16:22 +0000</pubDate>
			<dc:creator>jumpfroggy</dc:creator>
			<guid isPermaLink="false">1150@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I just made a bug for this here:&#60;br /&#62;
&#60;a href=&#34;http://sourceforge.net/tracker/index.php?func=detail&#38;#038;aid=1873180&#38;#038;group_id=45545&#38;#038;atid=443219&#34; rel=&#34;nofollow&#34;&#62;http://sourceforge.net/tracker/index.php?func=detail&#38;#038;aid=1873180&#38;#038;group_id=45545&#38;#038;atid=443219&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#34;Regular and Backslash expressions should be mutually exclusive.&#60;/p&#62;
&#60;p&#62;In the Search dialog, there are two checkboxes:&#60;br /&#62;
&#34;Regular expression&#34;&#60;br /&#62;
&#34;Allow backslash expressions&#34;&#60;/p&#62;
&#60;p&#62;These are two conflicting options, so the checkboxes should be mutually&#60;br /&#62;
exclusive. It looks like right now the Regular expression takes precedence&#60;br /&#62;
if they are both checked, but you really shouldn't be able to check both&#60;br /&#62;
unless you can actually use both.&#60;/p&#62;
&#60;p&#62;I propose that if you check one of these checkboxes, the other is&#60;br /&#62;
automatically unchecked. This would solve confusion, and more accurately&#60;br /&#62;
reflect how they really operate.&#34;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Regex: newline? (iRob)</title>
			<link>http://pnotepad.org/forums/topic/77#post-283</link>
			<pubDate>Fri, 07 Jul 2006 15:33:52 +0000</pubDate>
			<dc:creator>iRob</dc:creator>
			<guid isPermaLink="false">283@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Is there a regex syntax for newline or carriage return?  I can't find one in the help or in the scintilla sourceforge pages.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Perl compatible regular expressions (mp)</title>
			<link>http://pnotepad.org/forums/topic/166#post-601</link>
			<pubDate>Fri, 09 Feb 2007 21:26:42 +0000</pubDate>
			<dc:creator>mp</dc:creator>
			<guid isPermaLink="false">601@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;First of all I'd like to say that I use Programmers Notepad every single day, it has all the features I need when coding PHP/Perl/Tcl with the exception of one.&#60;br /&#62;
So I'm just wondering if PCRE (perl compatible regular expressions) is planned for future releases?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>using find-replace (Kyote)</title>
			<link>http://pnotepad.org/forums/topic/71#post-264</link>
			<pubDate>Sun, 18 Jun 2006 02:48:50 +0000</pubDate>
			<dc:creator>Kyote</dc:creator>
			<guid isPermaLink="false">264@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;How do I search for consecutive new lines? used to I could could do \n\n to find blank lines in a text file and then replace with \n but now it gives me a warnign saying specified text not found.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Regular Expression search (philcart)</title>
			<link>http://pnotepad.org/forums/topic/37#post-144</link>
			<pubDate>Tue, 14 Mar 2006 00:49:26 +0000</pubDate>
			<dc:creator>philcart</dc:creator>
			<guid isPermaLink="false">144@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Just trying to work out how the Regular Expression search works.&#60;/p&#62;
&#60;p&#62;I'm trying to find specific lines in a text file that do not contain at least 22 pipe characters.&#60;/p&#62;
&#60;p&#62;The expression I entered is&#60;br /&#62;
~^*\&#124;{22}&#60;/p&#62;
&#60;p&#62;This doesn't find any rows but I definately know that invalid rows exist. I found one manually by scanning through the file.&#60;/p&#62;
&#60;p&#62;Is my expression incorrect, or is there a problem with the regex find?&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Phill
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>How to setup output parser for NAnt C# (etasoft)</title>
			<link>http://pnotepad.org/forums/topic/7#post-19</link>
			<pubDate>Wed, 18 Jan 2006 14:35:49 +0000</pubDate>
			<dc:creator>etasoft</dc:creator>
			<guid isPermaLink="false">19@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I am trying to setup error parser pattern without any luck for NAnt running C# compiler.&#60;br /&#62;
Build-in parser used to work with older version  of NAnt but after I upgraded NAnt, its output slightly changed and there I am.&#60;br /&#62;
I have tried this [csc] %f(%l,%c): &#60;/p&#62;
&#60;p&#62;Actual output from NAnt is:&#60;/p&#62;
&#60;p&#62;      [csc] d:\xtrans\src\etasoft\Connector.cs(132,23): error CS1519: Invalid token ';' in class, struct, or interface member declaration
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

