[PHP] Re: Get value between 2 strings

2003-11-17 Thread Al
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

[PHP] Re: Get value between 2 strings

2003-11-17 Thread Lucian Cozma
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