<br><br><div><span class="gmail_quote">On 2/5/06, <b class="gmail_sendername">Bian Alex</b> &lt;<a href="mailto:python.bian@gmail.com">python.bian@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;">
<div>How can I get a&nbsp;string from a random&nbsp;file. </div>
<div>For Example:</div>
<div>Del&nbsp;&nbsp;&nbsp; ete On&nbsp;&nbsp; :&nbsp;&nbsp; Copy<br>Owner&nbsp;&nbsp; :&nbsp; Bn<br>Personalized: 5<br>PersonalizedName&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; :&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; My&nbsp;&nbsp; &nbsp;Documents</div>
<div>&nbsp;</div>
<div>I want to get the string after 'Owner' ( In example is 'Bn')</div>
<div>&nbsp;</div>
<div>'import re' ?</div>
<div>&nbsp;</div>
<div>Pls help.</div></blockquote>help &lt;<a href="mailto:tutor@python.org">tutor@python.org</a>&gt;</div><br>You mean like this?<br><br>&gt;&gt;&gt; line ='Owner:Bn'<br>&gt;&gt;&gt; line = line.split(&quot;:&quot;)<br>&gt;&gt;&gt; print line
<br>['Owner', 'Bn']<br>&gt;&gt;&gt; print line[1]<br>Bn<br><br><br>So you read the lines from the file till you find &quot;Owner:Bn&quot; and split it at the ':'.<br>