Here's what I use:
/**
* get_text()
*
* $t The total text string
* $s starting text string [e.g. ]
* $e ending text string [e.g.
*
* @return the extracted text string. [e.g., returns string between
start and end texts.
*/
function get_text($text, $s, $e) // Get string out of text
{
$sp = strp
This should do the trick:
$line = "I want the value between word ONE and word TWO. Please return
it...";
preg_match('/ONE(.*)TWO/i', $line, $ret);
print_r($ret);
"Matt Palermo" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello. I was wondering if anyone knew of a function to g
2 matches
Mail list logo