Can someone recommend how I might transform something like the following:

<text:p text:style-name="p_5f_soemthing_else">blah</text:p>
<text:p text:style-name="p_5f_prototype">session_start();</text:p>
<text:p text:style-name="p_5f_prototype">require_once('foo.php');</text:p>
<text:p text:style-name="p_5f_prototype"/>
<text:p text:style-name="p_5f_prototype">bool some_function(resource 
$px,</text:p>
<text:p text:style-name="p_5f_prototype"><text:s text:c="8"/>string 
$ssn_id,</text:p>
<text:p text:style-name="p_5f_prototype"><text:s text:c="8"/>array 
$options=NULL)</text:p>
<text:p text:style-name="p_5f_soemthing_else">blah</text:p>
<text:p text:style-name="p_5f_prototype">another proto ...</text:p>

into the this:
     
<pre>session_start();
require_once('foo.php');
     
bool some_function(resource $px,
        string $ssn_id,
        array $options=NULL)</pre>

<pre>another proto ...</pre>
     
Mike

-- 
Michael B Allen
PHP Active Directory Kerberos SSO
http://www.ioplex.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to