<?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: FindBetween: A Useful GREP String</title>
	<atom:link href="http://indesignsecrets.com/findbetween-a-useful-grep-string.php/feed" rel="self" type="application/rss+xml" />
	<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php</link>
	<description>InDesignSecrets Blog and Podcast</description>
	<lastBuildDate>Thu, 09 Feb 2012 18:24:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: David Blatner</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-2#comment-495426</link>
		<dc:creator>David Blatner</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-495426</guid>
		<description>@Lisa, as you can see in comments before yours, our site destroys a lot of grep codes, especially things with angle brackets. It thinks it&#039;s html code or something.

In general, I would recommend asking questions on our forum instead of a particular blog post. (Click forums in the nav bar up above. You&#039;ll need to have a free membership to post.) You&#039;ll still need to &quot;escape&quot; those special character with backslashes, but more people will see it there.</description>
		<content:encoded><![CDATA[<p>@Lisa, as you can see in comments before yours, our site destroys a lot of grep codes, especially things with angle brackets. It thinks it&#8217;s html code or something.</p>
<p>In general, I would recommend asking questions on our forum instead of a particular blog post. (Click forums in the nav bar up above. You&#8217;ll need to have a free membership to post.) You&#8217;ll still need to &#8220;escape&#8221; those special character with backslashes, but more people will see it there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-2#comment-495424</link>
		<dc:creator>Lisa</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:40:49 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-495424</guid>
		<description>Well that&#039;s weird - my grep string changed after I hit the comment button.</description>
		<content:encoded><![CDATA[<p>Well that&#8217;s weird &#8211; my grep string changed after I hit the comment button.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-2#comment-495423</link>
		<dc:creator>Lisa</dc:creator>
		<pubDate>Wed, 08 Feb 2012 16:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-495423</guid>
		<description>I work in the publishing industry and often have to format books, such as cookbooks. The text comes to me with tags at the beginning and end of each block that needs to be styled a certain way. This would be easy if the tag was at the beginning and/or end of each paragraph or line but it is not. I might have an entire ingredients list that begins with a tag, such as:



then lists the ingredients and after the last one, ends with:



The same goes for multiple paragraphs of text - codes at beginning and end of multiple paragraphs, not each one.

I am trying to figure out if it&#039;s possible to format these easily. I tried:

(?&lt;=).*?(?=)

but it only recognizes the first line. It seems the end paragraph mark messed things up. Any advice you can offer will be greatly appreciated. Thanks!</description>
		<content:encoded><![CDATA[<p>I work in the publishing industry and often have to format books, such as cookbooks. The text comes to me with tags at the beginning and end of each block that needs to be styled a certain way. This would be easy if the tag was at the beginning and/or end of each paragraph or line but it is not. I might have an entire ingredients list that begins with a tag, such as:</p>
<p>then lists the ingredients and after the last one, ends with:</p>
<p>The same goes for multiple paragraphs of text &#8211; codes at beginning and end of multiple paragraphs, not each one.</p>
<p>I am trying to figure out if it&#8217;s possible to format these easily. I tried:</p>
<p>(?&lt;=).*?(?=)</p>
<p>but it only recognizes the first line. It seems the end paragraph mark messed things up. Any advice you can offer will be greatly appreciated. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jongware</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-495155</link>
		<dc:creator>Jongware</dc:creator>
		<pubDate>Fri, 20 Jan 2012 10:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-495155</guid>
		<description>Aina, that is exactly what this post is about! The example changes the text inbetween to italics, but surely it ought to work the same for bold.

To find your specific word inside parentheses-but-excluding-them, don&#039;t use the wildcards but simply enter the to-be-found text:

(?&lt;=\()EX GST(?=\))</description>
		<content:encoded><![CDATA[<p>Aina, that is exactly what this post is about! The example changes the text inbetween to italics, but surely it ought to work the same for bold.</p>
<p>To find your specific word inside parentheses-but-excluding-them, don&#8217;t use the wildcards but simply enter the to-be-found text:</p>
<p>(?&lt;=\()EX GST(?=\))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aina Olvidado</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-495152</link>
		<dc:creator>Aina Olvidado</dc:creator>
		<pubDate>Fri, 20 Jan 2012 02:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-495152</guid>
		<description>I would like to ask how would you make the word inside the open and close parenthesis bold or how would you find a specific word inside the open and close parenthesis. 

for example: (EX GST)?

I can&#039;t figure out how to make a grep code for this one.</description>
		<content:encoded><![CDATA[<p>I would like to ask how would you make the word inside the open and close parenthesis bold or how would you find a specific word inside the open and close parenthesis. </p>
<p>for example: (EX GST)?</p>
<p>I can&#8217;t figure out how to make a grep code for this one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erica Gamet</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-493336</link>
		<dc:creator>Erica Gamet</dc:creator>
		<pubDate>Tue, 01 Nov 2011 20:36:12 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-493336</guid>
		<description>Not sure if it was mentioned (too many comments to read them all)...but the great thing about the lookaround is that it works great in a style as well. Once I discovered the lookaround, I was able to shift some of my find/change routines into integrated GREP in styles. Great tip!</description>
		<content:encoded><![CDATA[<p>Not sure if it was mentioned (too many comments to read them all)&#8230;but the great thing about the lookaround is that it works great in a style as well. Once I discovered the lookaround, I was able to shift some of my find/change routines into integrated GREP in styles. Great tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jongware</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-493055</link>
		<dc:creator>Jongware</dc:creator>
		<pubDate>Mon, 17 Oct 2011 13:35:14 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-493055</guid>
		<description>Shlomit, &lt;em&gt;this&lt;/em&gt; is the Special Case. If you want to include the parentheses you don&#039;t have to do anything special (except escape the parens with a backslash because otherwise they will be interpreted as GREP commands).</description>
		<content:encoded><![CDATA[<p>Shlomit, <em>this</em> is the Special Case. If you want to include the parentheses you don&#8217;t have to do anything special (except escape the parens with a backslash because otherwise they will be interpreted as GREP commands).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shlomit Heymann</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-493051</link>
		<dc:creator>Shlomit Heymann</dc:creator>
		<pubDate>Mon, 17 Oct 2011 11:25:25 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-493051</guid>
		<description>thank you very much for that.
what do I need to add if do want to find both the parentheses and whatever include between them?
thanks,
Shlomit</description>
		<content:encoded><![CDATA[<p>thank you very much for that.<br />
what do I need to add if do want to find both the parentheses and whatever include between them?<br />
thanks,<br />
Shlomit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tara</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-490436</link>
		<dc:creator>Tara</dc:creator>
		<pubDate>Wed, 13 Apr 2011 02:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-490436</guid>
		<description>I am using cs4 and am completely unfamiliar with greps. I need to change charts with plain numbers to charts with numbers surrounded with parentheses. I managed to muddle my way through the grep screen in the paragraph styles to superscript certain columns, but does anyone know how to write the command to put the parentheses around the numbers. I probably have ten thousand cells to change and I really don&#039;t want to do it by hand. ;)

Thanks!</description>
		<content:encoded><![CDATA[<p>I am using cs4 and am completely unfamiliar with greps. I need to change charts with plain numbers to charts with numbers surrounded with parentheses. I managed to muddle my way through the grep screen in the paragraph styles to superscript certain columns, but does anyone know how to write the command to put the parentheses around the numbers. I probably have ten thousand cells to change and I really don&#8217;t want to do it by hand. <img src='http://indesignsecrets.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mary</title>
		<link>http://indesignsecrets.com/findbetween-a-useful-grep-string.php/comment-page-1#comment-490099</link>
		<dc:creator>Mary</dc:creator>
		<pubDate>Thu, 31 Mar 2011 17:46:03 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findbetween-a-useful-grep-string.php#comment-490099</guid>
		<description>BTW I did create a separate GREP to override the formatting on the forward slash,  but I was wondering if it could be done all in one GREP instead.

Thanks!</description>
		<content:encoded><![CDATA[<p>BTW I did create a separate GREP to override the formatting on the forward slash,  but I was wondering if it could be done all in one GREP instead.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching using disk

Served from: indesignsecrets.com @ 2012-02-09 21:02:01 -->
