man perlretut or <a href="http://perldoc.perl.org/perlretut.html">http://perldoc.perl.org/perlretut.html</a>.<br><br>I&#39;ll create an example for you which will capture &#39;We go to the &#39; plus one word terminated by a period, EOL, or non-word character. Be careful, as hyphenated places will not be included. Also, if the place is on the next line, or the spaces are wrong, we won&#39;t catch that either. 
<br><br>Create a file:<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;START-OF-FILE&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<br>#!/bin/perl<br><br>while(&lt;&gt;) {<br>&nbsp;&nbsp;&nbsp; if( $_ =~ /(We go to the \w+)($|\W|\.)/ ) {<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print $1 . &quot;\n&quot;;
<br>&nbsp;&nbsp;&nbsp; }<br>}<br>&gt;&gt;&gt;&gt;&gt;&gt;&gt;END-OF-FILE&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;<br>Chris<br><br><div><span class="gmail_quote">On 9/2/07, <b class="gmail_sendername">Todd Walton</b> &lt;<a href="mailto:tdwalton@gmail.com">
tdwalton@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Can someone refresh my memory?&nbsp;&nbsp;I have a file with many lines of text.
<br> One (or two) of those lines has an expression in it, &quot;We go to the &quot;,<br>followed by another one word.&nbsp;&nbsp;I want to use perl to find that<br>expression and print &quot;We go to the park&quot; or &quot;We go to the game&quot; or
<br>whatever it is.&nbsp;&nbsp;How do I do that?<br><br>So far I know that -e will run a perl command from the shell command<br>line.&nbsp;&nbsp;And I saw a -Fpattern in man perl, but I couldn&#39;t find anything<br>else on command-line options in man perl.&nbsp;&nbsp;I did find a page about it
<br>on <a href="http://perl.com">perl.com</a> and then at the end of that article it said to see &#39;man<br>perlrun&#39;.&nbsp;&nbsp;So I&#39;m all over that.<br><br>But how do I yank and return just &quot;We go to the &quot; out of it?
<br><br>-todd<br>_______________________________________________<br>Cialug mailing list<br><a href="mailto:Cialug@cialug.org">Cialug@cialug.org</a><br><a href="http://cialug.org/mailman/listinfo/cialug">http://cialug.org/mailman/listinfo/cialug
</a><br></blockquote></div><br>