<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Working with EditPlus Text Editor-Regular Expression How To</title>
	<atom:link href="http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/feed" rel="self" type="application/rss+xml" />
	<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to</link>
	<description>Kedar&#039;s Blog for MySQL and more</description>
	<lastBuildDate>Fri, 27 Jan 2012 04:35:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: EditPlus Text Editor with Regular Expression &#171; My Weedzy Blog</title>
		<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/comment-page-1#comment-3279</link>
		<dc:creator>EditPlus Text Editor with Regular Expression &#171; My Weedzy Blog</dc:creator>
		<pubDate>Tue, 09 Aug 2011 15:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=688#comment-3279</guid>
		<description>[...] Reference : http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to [...]</description>
		<content:encoded><![CDATA[<p>[...] Reference : <a href="http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to" rel="nofollow">http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kedar</title>
		<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/comment-page-1#comment-2984</link>
		<dc:creator>Kedar</dc:creator>
		<pubDate>Wed, 16 Feb 2011 15:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=688#comment-2984</guid>
		<description>Arif,

search: (.*)-.*
replace: \1

Cheers.</description>
		<content:encoded><![CDATA[<p>Arif,</p>
<p>search: (.*)-.*<br />
replace: \1</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thaslim Arif</title>
		<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/comment-page-1#comment-2981</link>
		<dc:creator>Thaslim Arif</dc:creator>
		<pubDate>Wed, 16 Feb 2011 15:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=688#comment-2981</guid>
		<description>Can you tell how to truncate a line from a given char or string . what i wanted is as follows .

IND vs PAK - Delhi
AUS vs ENG - Dhaka

i want these to become 
IND vs PAK 
AUS vs ENG 

ie trucate the line from the char &quot;-&quot; .</description>
		<content:encoded><![CDATA[<p>Can you tell how to truncate a line from a given char or string . what i wanted is as follows .</p>
<p>IND vs PAK &#8211; Delhi<br />
AUS vs ENG &#8211; Dhaka</p>
<p>i want these to become<br />
IND vs PAK<br />
AUS vs ENG </p>
<p>ie trucate the line from the char &#8220;-&#8221; .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bar Ilan Responsa</title>
		<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/comment-page-1#comment-305</link>
		<dc:creator>Bar Ilan Responsa</dc:creator>
		<pubDate>Fri, 28 May 2010 10:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=688#comment-305</guid>
		<description>Thanks on your help
If you find how to delete only lines or exprssion that not contain a given String I happy to know
Or, if you know any other Program that allow that.
Thanks
Yoni</description>
		<content:encoded><![CDATA[<p>Thanks on your help<br />
If you find how to delete only lines or exprssion that not contain a given String I happy to know<br />
Or, if you know any other Program that allow that.<br />
Thanks<br />
Yoni</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kedar</title>
		<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/comment-page-1#comment-304</link>
		<dc:creator>Kedar</dc:creator>
		<pubDate>Mon, 24 May 2010 09:30:01 +0000</pubDate>
		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=688#comment-304</guid>
		<description>Hi Bar,
^ here represents Beginning of a line while $ represents end  of the line.
So from the beginning (^) to end ($) delete lines whichever contains STRING.

eg.

this is the line
this is the line too

From above two lines if I replace using:
^this is the line$
only first line will get replaced but second.

I hope I&#039;m making sense.</description>
		<content:encoded><![CDATA[<p>Hi Bar,<br />
^ here represents Beginning of a line while $ represents end  of the line.<br />
So from the beginning (^) to end ($) delete lines whichever contains STRING.</p>
<p>eg.</p>
<p>this is the line<br />
this is the line too</p>
<p>From above two lines if I replace using:<br />
^this is the line$<br />
only first line will get replaced but second.</p>
<p>I hope I&#8217;m making sense.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bar Ilan Responsa</title>
		<link>http://kedar.nitty-witty.com/blog/working-with-editplus-text-editor-regular-expression-how-to/comment-page-1#comment-303</link>
		<dc:creator>Bar Ilan Responsa</dc:creator>
		<pubDate>Sat, 15 May 2010 23:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://kedar.nitty-witty.com/blog/?p=688#comment-303</guid>
		<description>Thank on your wondeful guide.
can you please explain why you the *Caret* ^ here?
Delete all lines containing a given STRING:
Find: “^.*STRING.*$”
Replace: “”
Thanks again
Bar</description>
		<content:encoded><![CDATA[<p>Thank on your wondeful guide.<br />
can you please explain why you the *Caret* ^ here?<br />
Delete all lines containing a given STRING:<br />
Find: “^.*STRING.*$”<br />
Replace: “”<br />
Thanks again<br />
Bar</p>
]]></content:encoded>
	</item>
</channel>
</rss>

