Re: [PHP] throw me a bone for a regexp please.

2004-10-15 Thread Robet Carson
Thank you for the tips and the help. I really appriciate it. You have given me something that I can use to learn regular expressions. Thanks, Robert On Fri, 15 Oct 2004 11:04:57 +0800, Jason Wong [EMAIL PROTECTED] wrote: On Friday 15 October 2004 10:35, Robet Carson wrote: need a

Re: [PHP] throw me a bone for a regexp please.

2004-10-15 Thread Matt M.
Also if someone could direct me to a site that explains how to use and create regexp in a small minded manor since I have been unable to grasp the concepts. the regex coach has been a big help to me http://www.weitz.de/regex-coach/ you might find it useful -- PHP General Mailing List

Re: [PHP] throw me a bone for a regexp please.

2004-10-15 Thread Robet Carson
Thanks! On Fri, 15 Oct 2004 10:06:15 -0500, Matt M. [EMAIL PROTECTED] wrote: Also if someone could direct me to a site that explains how to use and create regexp in a small minded manor since I have been unable to grasp the concepts. the regex coach has been a big help to me

[PHP] throw me a bone for a regexp please.

2004-10-14 Thread Robet Carson
need a regexp to get the contents of this marker or one very simular: {!STATISTICS:starbucks!} what I am looking for is to get the STATISTICS and starbucks into an array() if possible. I believe with the correct regexp this can be accomplished using preg_split() or by getting the contents of

Re: [PHP] throw me a bone for a regexp please.

2004-10-14 Thread Jason Wong
On Friday 15 October 2004 10:35, Robet Carson wrote: need a regexp to get the contents of this marker or one very simular: {!STATISTICS:starbucks!} what I am looking for is to get the STATISTICS and starbucks into an array() if possible. I believe with the correct regexp this can be